Skip to content

Commit 1b0618f

Browse files
dungahkNathanWalker
authored andcommittedMar 18, 2019
feat(generators): add preview script to app.nativescript (#105)
close #102
1 parent 1dbe95a commit 1b0618f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/app.nativescript/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export default function (options: ApplicationOptions) {
5555
scripts[`clean`] = `npx rimraf -- hooks node_modules package-lock.json && npm i`;
5656
scripts[`start.${platformApp}.ios`] = `cd apps/${options.name} && tns run ios --emulator --bundle${hmr}`;
5757
scripts[`start.${platformApp}.android`] = `cd apps/${options.name} && tns run android --emulator --bundle${hmr}`;
58+
scripts[`start.${platformApp}.preview`] = `cd apps/${options.name} && tns preview --bundle${hmr}`;
5859
scripts[`clean.${platformApp}`] = `cd apps/${options.name} && npx rimraf -- hooks node_modules platforms package-lock.json && npm i && npx rimraf -- package-lock.json`;
5960
return updatePackageScripts(tree, scripts);
6061
},

0 commit comments

Comments
 (0)