From 03eb76f844e91a8f96d37ed2981d6865771c333b Mon Sep 17 00:00:00 2001 From: sis0k0 Date: Mon, 5 Jun 2017 10:48:06 +0300 Subject: [PATCH] fix: bundle scripts should invoke tns run instead of tns start fixes #172 --- npmScriptsManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npmScriptsManager.js b/npmScriptsManager.js index 1343e301..af5d99cd 100644 --- a/npmScriptsManager.js +++ b/npmScriptsManager.js @@ -1,6 +1,6 @@ const SCRIPT_TEMPLATES = Object.freeze({ "ns-bundle": "ns-bundle", - "start-[PLATFORM]-bundle": "npm run ns-bundle --[PLATFORM] --start-app", + "start-[PLATFORM]-bundle": "npm run ns-bundle --[PLATFORM] --run-app", "build-[PLATFORM]-bundle": "npm run ns-bundle --[PLATFORM] --build-app", "publish-ios-bundle": "npm run ns-bundle --ios --publish-app", });