We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 571e91d + bcd6823 commit 6ba2981Copy full SHA for 6ba2981
lib/options.ts
@@ -223,6 +223,11 @@ export class Options {
223
this.$settingsService.setSettings({ profileDir: this.argv.profileDir });
224
this.argv.profileDir = this.argv["profile-dir"] = this.$settingsService.getProfileDir();
225
226
+ // if justlaunch is set, it takes precedence over the --watch flag and the default true value
227
+ if (this.argv.justlaunch) {
228
+ this.argv.watch = false;
229
+ }
230
+
231
// Default to "nativescript-dev-webpack" if only `--bundle` is passed
232
if (this.argv.bundle !== undefined || this.argv.hmr) {
233
this.argv.bundle = this.argv.bundle || "webpack";
0 commit comments