-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop cache if it is not used #56
base: master
Are you sure you want to change the base?
Conversation
@@ -19,7 +19,7 @@ module.exports = function (f, opts) { | |||
makePlatform = new MakePlatform(), | |||
logger; | |||
|
|||
return makePlatform.init(path.resolve(opts.dir)) | |||
return makePlatform.init(path.resolve(opts.dir), null, null, { useCache: opts.cache }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
То есть, раньше вообще опции про кеш не пробрасывались?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Этож не тот кэш, который был раньше, а тот, который приедет с fileCache
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Просто раньше в init
опции про кэш не использовались, там дальше идет отдельная проверка, типа:
if (opts.cache) {
makePlatform.loadCache();
}
И первая версия файлового кэша была заточена под такой способ инициализации: сначала restricted режим, а в loadCache я его сбрасывал, но это нифига не очевидно, по-этому пробрасываю опцию здесь, чтоб она прилетела в конструктор FileCache
🆗 |
@@ -8,7 +8,7 @@ var path = require('path'), | |||
* @param {Function} [f] | |||
* @param {Object} [opts] | |||
* @param {String} [opts.dir] Корень проекта. | |||
* @param {Boolean} [opts.noCache=false] Не учитывать кэш при запуске таска. | |||
* @param {Boolean} [opts.cache=true] Учитывать кэш при запуске таска. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
это я просто поправил багу в описании
No description provided.