Skip to content

Commit

Permalink
adding back resolving import just in case a config with import is add…
Browse files Browse the repository at this point in the history
…ed through argv
  • Loading branch information
poornima committed Mar 3, 2015
1 parent c1d656e commit 1f9d6d1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 1f9d6d1

Please sign in to comment.