We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3206531 commit 49068e6Copy full SHA for 49068e6
build/pack-scripts/pack-compat.ts
@@ -56,7 +56,7 @@ fs.emptyDirSync(tempFolderPath);
56
fs.ensureDirSync(distFolderPath);
57
58
// Install, run tsc and run ngc
59
-execSync(`npm i && tsc && npm run ngc`, {
+execSync(`npm i && npm run tsc && npm run ngc`, {
60
cwd: nsAngularPackagePath
61
});
62
nativescript-angular-package/package.json
@@ -41,6 +41,6 @@
41
},
42
"scripts": {
43
"ngc": "ngc -p tsconfig.json",
44
- "pack-with-scoped-version": "cd ../build/pack-scripts && npm i && npx ts-node pack-compat.ts"
+ "tsc": "tsc",
45
}
46
0 commit comments