Default buildMode to development for meteor run command.

Another attempt to fix {debug,prod}Only package self-test failures:
https://circleci.com/gh/meteor/meteor/19960
This commit is contained in:
Ben Newman
2018-04-24 11:09:18 -04:00
parent 8b8f93fe03
commit 6bcf2fbee9

View File

@@ -422,7 +422,7 @@ function doRunCommand(options) {
settingsFile: options.settings,
buildOptions: {
minifyMode: options.production ? 'production' : 'development',
buildMode: options.production && 'production',
buildMode: options.production ? 'production' : 'development',
webArchs: webArchs
},
rootUrl: process.env.ROOT_URL,