Skip to content

Commit 8d2bcb4

Browse files
committed
feat: nx migrate latest with ng 15.0.1
1 parent 5b56a50 commit 8d2bcb4

File tree

3 files changed

+28
-26
lines changed

3 files changed

+28
-26
lines changed

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -35,39 +35,39 @@
3535
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
3636
},
3737
"dependencies": {
38-
"@angular/animations": "15.0.0-rc.3",
39-
"@angular/common": "15.0.0-rc.3",
40-
"@angular/compiler": "15.0.0-rc.3",
41-
"@angular/core": "15.0.0-rc.3",
42-
"@angular/forms": "15.0.0-rc.3",
43-
"@angular/platform-browser": "15.0.0-rc.3",
44-
"@angular/platform-browser-dynamic": "15.0.0-rc.3",
45-
"@angular/router": "15.0.0-rc.3",
46-
"@nativescript/core": "~8.3.4",
38+
"@angular/animations": "15.0.1",
39+
"@angular/common": "15.0.1",
40+
"@angular/compiler": "15.0.1",
41+
"@angular/core": "15.0.1",
42+
"@angular/forms": "15.0.1",
43+
"@angular/platform-browser": "15.0.1",
44+
"@angular/platform-browser-dynamic": "15.0.1",
45+
"@angular/router": "15.0.1",
46+
"@nativescript/core": "next",
4747
"@nativescript/theme": "~3.0.2",
4848
"@ngx-translate/core": "~14.0.0",
4949
"nativescript-ngx-fonticon": "~7.0.0",
5050
"rxjs": "^7.5.6",
5151
"zone.js": "~0.12.0"
5252
},
5353
"devDependencies": {
54-
"@angular-devkit/build-angular": "15.0.0-rc.3",
54+
"@angular-devkit/build-angular": "15.0.1",
5555
"@angular-eslint/eslint-plugin": "14.0.4",
5656
"@angular-eslint/eslint-plugin-template": "14.0.4",
5757
"@angular-eslint/template-parser": "14.0.4",
58-
"@angular/compiler-cli": "15.0.0-rc.3",
58+
"@angular/compiler-cli": "15.0.1",
5959
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
6060
"@nativescript/types": "~8.3.1",
6161
"@nativescript/unit-test-runner": "^3.0.4",
62-
"@nativescript/webpack": "~5.0.8",
63-
"@ngtools/webpack": "15.0.0-rc.3",
64-
"@nrwl/angular": "15.0.13",
65-
"@nrwl/cli": "15.0.13",
66-
"@nrwl/eslint-plugin-nx": "15.0.13",
67-
"@nrwl/jest": "15.0.13",
68-
"@nrwl/js": "15.0.13",
69-
"@nrwl/node": "15.0.13",
70-
"@nrwl/workspace": "15.0.13",
62+
"@nativescript/webpack": "~5.0.11",
63+
"@ngtools/webpack": "15.0.1",
64+
"@nrwl/angular": "15.2.1",
65+
"@nrwl/cli": "15.2.1",
66+
"@nrwl/eslint-plugin-nx": "15.2.1",
67+
"@nrwl/jest": "15.2.1",
68+
"@nrwl/js": "15.2.1",
69+
"@nrwl/node": "15.2.1",
70+
"@nrwl/workspace": "15.2.1",
7171
"@nstudio/angular": "15.0.2",
7272
"@nstudio/nativescript": "15.0.2",
7373
"@nstudio/nativescript-angular": "15.0.2",
@@ -92,8 +92,8 @@
9292
"karma-nativescript-launcher": "0.4.0",
9393
"karma-sinon": "^1.0.5",
9494
"lint-staged": "^13.0.3",
95-
"ng-packagr": "14.2.2",
96-
"nx": "15.0.13",
95+
"ng-packagr": "15.0.1",
96+
"nx": "15.2.1",
9797
"nyc": "15.1.0",
9898
"postcss": "^8.4.16",
9999
"postcss-import": "14.1.0",
@@ -105,7 +105,7 @@
105105
"ts-jest": "28.0.8",
106106
"ts-node": "10.9.1",
107107
"tslib": "^2.4.0",
108-
"typescript": "~4.7.2"
108+
"typescript": "~4.8.0"
109109
},
110110
"xplat": {
111111
"prefix": "nativescript",

packages/angular/tsconfig.lib.prod.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{
22
"extends": "./tsconfig.lib.json",
33
"compilerOptions": {
4-
"declarationMap": false
4+
"declarationMap": false,
5+
"target": "ES2022",
6+
"useDefineForClassFields": false
57
},
68
"angularCompilerOptions": {
79
"compilationMode": "partial"

tsconfig.base.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"emitDecoratorMetadata": true,
99
"experimentalDecorators": true,
1010
"importHelpers": true,
11-
"target": "es2015",
11+
"target": "ES2020",
1212
"module": "esnext",
1313
"typeRoots": ["node_modules/@types"],
14-
"lib": ["es2017", "dom"],
14+
"lib": ["ESNext", "dom"],
1515
"skipLibCheck": true,
1616
"skipDefaultLibCheck": true,
1717
"baseUrl": ".",

0 commit comments

Comments
 (0)