From 2376087b32dcb7a8aad61656862ca1e016a9d263 Mon Sep 17 00:00:00 2001 From: VladimirAmiorkov Date: Thu, 14 Feb 2019 11:41:59 +0200 Subject: [PATCH] feat: enable "--bundle" for demo-vue --- src/scripts/predefined-scripts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scripts/predefined-scripts.js b/src/scripts/predefined-scripts.js index 3f4f255..1c65935 100644 --- a/src/scripts/predefined-scripts.js +++ b/src/scripts/predefined-scripts.js @@ -267,13 +267,13 @@ function getPluginPreDefinedScripts(srcPath, demoFolder, demoAngularFolder, demo }, { key: "nd.demo.vue.tns.run.android", - value: "cd " + demoVueFolder + " && tns run android --syncAllFiles", + value: "cd " + demoVueFolder + " && tns run android --bundle --syncAllFiles", description: "Runs the 'demo-vue' app on Android with '--syncAllFiles' argument", category: "secondary" }, { key: "nd.demo.vue.tns.run.ios", - value: "cd " + demoVueFolder + " && tns run ios --syncAllFiles" + provisioningParam, + value: "cd " + demoVueFolder + " && tns run ios --bundle --syncAllFiles" + provisioningParam, description: "Runs the 'demo-vue' app on iOS with '--syncAllFiles' argument", category: "secondary" },