diff --git a/lib/factory.js b/lib/factory.js index aa9009a..012e91e 100644 --- a/lib/factory.js +++ b/lib/factory.js @@ -58,6 +58,7 @@ export default class Factory { create(cb) { this.promise + .then(store => Handlers.resolveImport(store, this.basedir)) .then(store => Handlers.resolveCustom(store, this.protocols)) .then(store => Handlers.resolveConfig(store)) .then(store => cb(null, new Config(store)), cb);