From 6bcf2fbee9f48fb56ef42cdbe17cfcb88f0955c7 Mon Sep 17 00:00:00 2001 From: Ben Newman Date: Tue, 24 Apr 2018 11:09:18 -0400 Subject: [PATCH] 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 --- tools/cli/commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cli/commands.js b/tools/cli/commands.js index fb86a47ec4..6c6dc9229e 100644 --- a/tools/cli/commands.js +++ b/tools/cli/commands.js @@ -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,