Skip to content

Commit

Permalink
Read config from root instead of cwd
Browse files Browse the repository at this point in the history
  • Loading branch information
DAB0mB committed Apr 20, 2017
1 parent d398b6f commit 772749c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bundler.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function bundle(options) {
Path.resolve(nodeModulesDir, "meteor-client.js");
var configFile = options.config ?
Path.resolve(cwd, options.config) :
Path.resolve(cwd, "meteor-client.config.json");
Path.resolve(rootDir, "meteor-client.config.json");

// A temporary dir where the temporary Meteor project is gonna be created
var tempDir = Tmp.dirSync({ unsafeCleanup: true }).name;
Expand Down

0 comments on commit 772749c

Please sign in to comment.