Skip to content

Commit e9e9327

Browse files
committed
chore: update build scripts, fix jenkins build
1 parent a492023 commit e9e9327

File tree

13 files changed

+56
-11
lines changed

13 files changed

+56
-11
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@ dist
1515
!/nativescript-angular/gulpfile.js
1616
!/nativescript-angular/zone-js/dist/*.js
1717

18+
/nativescript-angular-package/**/*.d.ts
19+
/nativescript-angular-package/**/*.js
20+
21+
!/nativescript-angular-package/global.d.ts
22+
!/nativescript-angular-package/postinstall.js
23+
!/nativescript-angular-package/hooks/**/*.js
24+
!/nativescript-angular-package/gulpfile.js
25+
!/nativescript-angular-package/zone-js/dist/*.js
26+
1827
.tscache
1928
.nvm
2029
.vscode

build/pack-scripts/pack-compat.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ execSync(`npm install --save-exact`, {
2323
cwd: nsAngularPackagePath
2424
});
2525

26-
// ensure empty temp and dist folders
26+
// ensure empty temp and existing dist folders
2727
fs.emptyDirSync(tempFolderPath);
28-
fs.emptyDirSync(distFolderPath);
28+
fs.ensureDirSync(distFolderPath);
2929

3030
// create .tgz in temp folder
3131
execSync(`npm pack ${nsAngularPackagePath}`, {
@@ -36,5 +36,5 @@ execSync(`npm pack ${nsAngularPackagePath}`, {
3636
const currentFileName = fs.readdirSync(tempFolderPath)[0];
3737

3838
// move built file and remove temp folder
39-
fs.moveSync(`${tempFolderPath}/${currentFileName}`, `${distFolderPath}/${outFileName}`);
39+
fs.moveSync(`${tempFolderPath}/${currentFileName}`, `${distFolderPath}/${outFileName}`, { overwrite: true });
4040
fs.removeSync(`${tempFolderPath}`);

build/pack-scripts/pack-scoped.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ execSync(`npm install --save-exact`, {
1616

1717
// ensure empty temp and dist folders
1818
fs.emptyDirSync(tempFolderPath);
19-
fs.emptyDirSync(distFolderPath);
19+
fs.ensureDirSync(distFolderPath);
2020

2121
// create .tgz in temp folder
2222
execSync(`npm pack ${nsAngularPackagePath}`, {
@@ -27,5 +27,5 @@ execSync(`npm pack ${nsAngularPackagePath}`, {
2727
const currentFileName = fs.readdirSync(tempFolderPath)[0];
2828

2929
// move built file and remove temp folder
30-
fs.moveSync(`${tempFolderPath}/${currentFileName}`, `${distFolderPath}/${outFileName}`);
30+
fs.moveSync(`${tempFolderPath}/${currentFileName}`, `${distFolderPath}/${outFileName}`, { overwrite: true });
3131
fs.removeSync(`${tempFolderPath}`);

e2e/renderer/tsconfig.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
}
2424
},
2525
"include": [
26-
"../../nativescript-angular-package",
27-
"../../nativescript-angular",
26+
"./node_modules/nativescript-angular",
2827
"**/*"
2928
],
3029
"exclude": [
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
*.tgz
2+
3+
*.ts
4+
!*.d.ts
5+
6+
*.js.map
7+
8+
tsconfig.json
9+
global.d.ts
10+
.npmignore
11+
gulpfile.js
12+
tslint.json

nativescript-angular-package/common.ts

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "@nativescript/angular/common";
+8
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
11
export * from "@nativescript/angular";
2+
export * from "@nativescript/angular/forms";
3+
export * from "@nativescript/angular/router";
4+
export * from "@nativescript/angular/file-system/ns-file-system";
5+
export * from "@nativescript/angular/modal-dialog";
6+
export * from "@nativescript/angular/forms/value-accessors/base-value-accessor";
7+
export * from "@nativescript/angular/trace";
8+
export * from "@nativescript/angular/renderer";
9+
export * from "@nativescript/angular/view-util";

nativescript-angular-package/package.json

+14-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,20 @@
3333
"dependencies": {
3434
"@nativescript/angular": "file:../nativescript-angular"
3535
},
36+
"devDependencies": {
37+
"@angular/animations": "~8.2.0",
38+
"@angular/common": "~8.2.0",
39+
"@angular/compiler": "~8.2.0",
40+
"@angular/compiler-cli": "~8.2.0",
41+
"@angular/core": "~8.2.0",
42+
"@angular/forms": "~8.2.0",
43+
"@angular/platform-browser": "~8.2.0",
44+
"@angular/platform-browser-dynamic": "~8.2.0",
45+
"@angular/router": "~8.2.0",
46+
"rxjs": "^6.4.0",
47+
"tns-core-modules": "next"
48+
},
3649
"scripts": {
37-
"pack-with-scoped-version": "cd ../build/pack-scripts && npm i && npx ts-node pack-compat.ts"
50+
"pack-with-scoped-version": "npm i && tsc && cd ../build/pack-scripts && npm i && npx ts-node pack-compat.ts"
3851
}
3952
}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "@nativescript/angular/router";
1+
export * from "@nativescript/angular/router";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { LocationState } from "@nativescript/angular/router/ns-location-strategy";

nativescript-angular-package/tsconfig.json

+3
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,8 @@
2727
},
2828
"include": [
2929
"**/*.ts"
30+
],
31+
"exclude":[
32+
"node_modules/*"
3033
]
3134
}

nativescript-angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"tsc-w": "tsc -p tsconfig.json -w",
3535
"ngc": "ngc -p tsconfig.json",
3636
"prepare": "npm run ngc",
37-
"pack": "cd ../build/pack-scripts && npm i && npx ts-node pack-scoped.ts",
37+
"pack": "npm i && tsc && cd ../build/pack-scripts && npm i && npx ts-node pack-scoped.ts",
3838
"version": "rm -rf package-lock.json && conventional-changelog -p angular -i ../CHANGELOG.md -s && git add ../CHANGELOG.md",
3939
"typedoc": "typedoc --tsconfig \"./tsconfig.typedoc.json\" --out ./bin/dist/ng-api-reference --includeDeclarations --name \"NativeScript Angular\" --theme ./node_modules/nativescript-typedoc-theme --excludeExternals --externalPattern \"**/+(tns-core-modules|module|declarations).d.ts\""
4040
},

0 commit comments

Comments
 (0)