Skip to content

Commit daabf64

Browse files
author
Elena Hristova
committed
remove --bundle option
1 parent 0c5d05a commit daabf64

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ This dev plugin allows a __NativeScript plugin authors__ to use a **predefined w
88
Note
99
> - This NS dev plugin has been developed on Mac and has not been tested on Windows.
1010
> - Using the plugin's scripts will open both Android Studio and XCode so be aware that those applications will open during the executing of the scripts.
11-
> - This plugin uses the `--syncAllFiles` to ensure that all of your NS plugin source code changes are transferred when changes are detected.
1211
1312
## Installation
1413

src/scripts/predefined-scripts.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -244,37 +244,37 @@ function getPluginPreDefinedScripts(srcPath, demoFolder, demoAngularFolder, demo
244244
{
245245
key: "nd.demo.tns.run.android",
246246
value: "cd " + demoFolder + " && tns run android",
247-
description: "Runs the 'demo' app on Android with '--syncAllFiles' argument",
247+
description: "Runs the 'demo' app on Android",
248248
category: "secondary"
249249
},
250250
{
251251
key: "nd.demo.tns.run.ios",
252252
value: "cd " + demoFolder + " && tns run ios" + provisioningParam,
253-
description: "Runs the 'demo' app on iOS with '--syncAllFiles' argument",
253+
description: "Runs the 'demo' app on iOS",
254254
category: "secondary"
255255
},
256256
{
257257
key: "nd.demo.angular.tns.run.android",
258258
value: "cd " + demoAngularFolder + " && tns run android",
259-
description: "Runs the 'demo-angular' app on Android with '--syncAllFiles' argument",
259+
description: "Runs the 'demo-angular' app on Android",
260260
category: "secondary"
261261
},
262262
{
263263
key: "nd.demo.angular.tns.run.ios",
264264
value: "cd " + demoAngularFolder + " && tns run ios" + provisioningParam,
265-
description: "Runs the 'demo-angular' app on iOS with '--syncAllFiles' argument",
265+
description: "Runs the 'demo-angular' app on iOS",
266266
category: "secondary"
267267
},
268268
{
269269
key: "nd.demo.vue.tns.run.android",
270-
value: "cd " + demoVueFolder + " && tns run android --bundle",
271-
description: "Runs the 'demo-vue' app on Android with '--syncAllFiles' argument",
270+
value: "cd " + demoVueFolder + " && tns run android",
271+
description: "Runs the 'demo-vue' app on Android",
272272
category: "secondary"
273273
},
274274
{
275275
key: "nd.demo.vue.tns.run.ios",
276-
value: "cd " + demoVueFolder + " && tns run ios --bundle" + provisioningParam,
277-
description: "Runs the 'demo-vue' app on iOS with '--syncAllFiles' argument",
276+
value: "cd " + demoVueFolder + " && tns run ios" + provisioningParam,
277+
description: "Runs the 'demo-vue' app on iOS",
278278
category: "secondary"
279279
},
280280
{

0 commit comments

Comments
 (0)