From 081fe18cc7a350748feb464e3087591ed60ab87c Mon Sep 17 00:00:00 2001 From: fatme Date: Tue, 21 May 2019 12:02:53 +0300 Subject: [PATCH] fix: set bundle option to webpack --- lib/options.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/options.ts b/lib/options.ts index 9dd4d1fc9c..2f2e4dcfe1 100644 --- a/lib/options.ts +++ b/lib/options.ts @@ -279,10 +279,7 @@ export class Options { this.argv.js = true; } - // Default to "nativescript-dev-webpack" if only `--bundle` is passed - if (this.argv.bundle !== undefined || this.argv.hmr) { - this.argv.bundle = this.argv.bundle || "webpack"; - } + this.argv.bundle = "webpack"; this.adjustDashedOptions(); }