Skip to content

Commit a9fb83c

Browse files
committed
Install packages before to execute tsc command
1 parent ca2dbac commit a9fb83c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"url": "https://github.com/proyecto26/nativescript-inappbrowser.git"
1616
},
1717
"scripts": {
18-
"tsc": "tsc",
19-
"build": "npm install && npm run tsc && npm run build.native",
18+
"tsc": "npm install && tsc",
19+
"build": "npm run tsc && npm run build.native",
2020
"build.native": "node scripts/build-native.js",
2121
"postclone": "npm i && node scripts/postclone.js && cd ../demo && npm i && npx rimraf -- package-lock.json && cd ../src",
2222
"test.android": "npm run tsc && npm run tslint && cd ../demo && tns build android && tns test android --justlaunch",

0 commit comments

Comments
 (0)