Skip to content

Commit 10ff242

Browse files
committed
chore: Nx 13.2.3 migration
1 parent 34bae0c commit 10ff242

File tree

3 files changed

+106
-273
lines changed

3 files changed

+106
-273
lines changed

nx.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"default": {
1919
"runner": "@nrwl/workspace/tasks-runners/default",
2020
"options": {
21-
"cacheableOperations": ["build", "lint", "test", "e2e"]
21+
"cacheableOperations": ["build", "lint", "test", "e2e"],
22+
"parallel": 1
2223
}
2324
}
2425
},

package.json

Lines changed: 26 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"license": "MIT",
55
"private": true,
66
"scripts": {
7-
"clean": "npx rimraf hooks node_modules package-lock.json yarn.lock && ns package-manager set npm && yarn",
7+
"clean": "npx rimraf hooks node_modules package-lock.json yarn.lock && yarn",
88
"clean.all": "yarn clean && nx run nativescript-demo-ng:clean",
9-
"postinstall": "husky install && ngcc --properties es2015 browser module main",
9+
"postinstall": "husky install",
1010
"nx": "nx",
1111
"start": "nx serve",
1212
"build": "nx run zone-js:build && nx run angular:build",
@@ -32,39 +32,38 @@
3232
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
3333
},
3434
"dependencies": {
35-
"@angular/animations": "~13.0.0",
36-
"@angular/common": "~13.0.0",
37-
"@angular/compiler": "~13.0.0",
38-
"@angular/core": "~13.0.0",
39-
"@angular/forms": "~13.0.0",
40-
"@angular/platform-browser": "~13.0.0",
41-
"@angular/platform-browser-dynamic": "~13.0.0",
42-
"@angular/router": "~13.0.0",
43-
"@nativescript/angular": "^12.2.0",
35+
"@angular/animations": "13.0.2",
36+
"@angular/common": "13.0.2",
37+
"@angular/compiler": "13.0.2",
38+
"@angular/core": "13.0.2",
39+
"@angular/forms": "13.0.2",
40+
"@angular/platform-browser": "13.0.2",
41+
"@angular/platform-browser-dynamic": "13.0.2",
42+
"@angular/router": "13.0.2",
4443
"@nativescript/core": "~8.1.0",
4544
"@nativescript/theme": "~3.0.0",
46-
"@ngx-translate/core": "~13.0.0",
45+
"@ngx-translate/core": "~14.0.0",
4746
"nativescript-ngx-fonticon": "~7.0.0",
48-
"rxjs": "^7.3.0",
49-
"zone.js": "0.11.4"
47+
"rxjs": "^7.4.0",
48+
"zone.js": "~0.11.4"
5049
},
5150
"devDependencies": {
5251
"@angular-devkit/build-angular": "~13.0.0",
53-
"@angular-eslint/eslint-plugin": "12.3.1",
54-
"@angular-eslint/eslint-plugin-template": "12.3.1",
55-
"@angular-eslint/template-parser": "12.3.1",
56-
"@angular/compiler-cli": "~13.0.0",
52+
"@angular-eslint/eslint-plugin": "12.6.1",
53+
"@angular-eslint/eslint-plugin-template": "12.6.1",
54+
"@angular-eslint/template-parser": "12.6.1",
55+
"@angular/compiler-cli": "13.0.2",
5756
"@nativescript/types": "~8.1.0",
5857
"@nativescript/unit-test-runner": "^2.0.5",
5958
"@nativescript/webpack": "5.0.2-alpha.0",
6059
"@ngtools/webpack": "next",
61-
"@nrwl/angular": "13.1.3",
62-
"@nrwl/cli": "13.1.3",
63-
"@nrwl/eslint-plugin-nx": "13.1.3",
64-
"@nrwl/jest": "13.1.3",
65-
"@nrwl/node": "13.1.3",
66-
"@nrwl/tao": "13.1.3",
67-
"@nrwl/workspace": "13.1.3",
60+
"@nrwl/angular": "13.2.3",
61+
"@nrwl/cli": "13.2.3",
62+
"@nrwl/eslint-plugin-nx": "13.2.3",
63+
"@nrwl/jest": "13.2.3",
64+
"@nrwl/node": "13.2.3",
65+
"@nrwl/tao": "13.2.3",
66+
"@nrwl/workspace": "13.2.3",
6867
"@nstudio/angular": "13.0.1",
6968
"@nstudio/nativescript": "13.0.1",
7069
"@nstudio/nativescript-angular": "13.0.1",
@@ -89,7 +88,7 @@
8988
"karma-sinon": "^1.0.5",
9089
"karma-webpack": "5.0.0",
9190
"lint-staged": "^11.0.0",
92-
"ng-packagr": "~13.0.8",
91+
"ng-packagr": "13.0.8",
9392
"postcss": "^8.3.9",
9493
"postcss-import": "^14.0.2",
9594
"postcss-preset-env": "^6.7.0",
@@ -100,7 +99,7 @@
10099
"ts-jest": "27.0.5",
101100
"ts-node": "9.1.1",
102101
"tslib": "^2.1.0",
103-
"typescript": "4.4.2"
102+
"typescript": "4.4.4"
104103
},
105104
"xplat": {
106105
"prefix": "nativescript",

0 commit comments

Comments
 (0)