Skip to content

Commit 65eefc7

Browse files
committed
chore: nx migrate @nativescript/[email protected]
1 parent ecac753 commit 65eefc7

File tree

6 files changed

+35
-29
lines changed

6 files changed

+35
-29
lines changed

.eslintrc.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,18 @@
2424
{
2525
"files": ["*.ts", "*.tsx"],
2626
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier", "plugin:@nx/typescript"],
27-
"rules": {}
27+
"rules": {
28+
"@typescript-eslint/no-extra-semi": "error",
29+
"no-extra-semi": "off"
30+
}
2831
},
2932
{
3033
"files": ["*.js", "*.jsx"],
3134
"extends": ["plugin:@nx/javascript"],
32-
"rules": {}
35+
"rules": {
36+
"@typescript-eslint/no-extra-semi": "error",
37+
"no-extra-semi": "off"
38+
}
3339
},
3440
{
3541
"files": ["references.d.ts"],

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,5 @@ Thumbs.db
4343
*.tgz
4444
packages/**/angular/dist
4545

46-
.nx/cache
46+
.nx/cache
47+
.nx/workspace-data

.prettierignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
/coverage
55
native-src
66

7-
/.nx/cache
7+
/.nx/cache
8+
/.nx/workspace-data

apps/demo-angular/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"@nativescript/core": "file:../../node_modules/@nativescript/core"
55
},
66
"devDependencies": {
7-
"@nativescript/android": "~8.7.0",
8-
"@nativescript/ios": "~8.7.0"
7+
"@nativescript/android": "~8.8.0",
8+
"@nativescript/ios": "~8.8.0"
99
}
1010
}

apps/demo/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"@nativescript/core": "file:../../node_modules/@nativescript/core"
88
},
99
"devDependencies": {
10-
"@nativescript/android": "~8.7.0",
11-
"@nativescript/ios": "~8.7.0"
10+
"@nativescript/android": "~8.8.0",
11+
"@nativescript/ios": "~8.8.0"
1212
}
1313
}

package.json

+19-21
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,27 @@
1616
},
1717
"private": true,
1818
"devDependencies": {
19-
"@angular/animations": "^17.0.0",
20-
"@angular/common": "^17.0.0",
21-
"@angular/compiler": "^17.0.0",
22-
"@angular/compiler-cli": "^17.0.0",
23-
"@angular/core": "^17.0.0",
24-
"@angular/forms": "^17.0.0",
25-
"@angular/platform-browser": "^17.0.0",
26-
"@angular/platform-browser-dynamic": "^17.0.0",
27-
"@angular/router": "^17.0.0",
28-
"@nativescript/angular": "^17.0.0",
29-
"@nativescript/core": "~8.7.0",
30-
"@nativescript/plugin-tools": "5.2.5",
31-
"@nativescript/types": "~8.7.0",
32-
"@nativescript/webpack": "~5.0.5",
33-
"@ngtools/webpack": "^17.0.0",
19+
"@angular-devkit/build-angular": "^18.0.0",
20+
"@angular/animations": "^18.0.0",
21+
"@angular/common": "^18.0.0",
22+
"@angular/compiler": "^18.0.0",
23+
"@angular/compiler-cli": "^18.0.0",
24+
"@angular/core": "^18.0.0",
25+
"@angular/forms": "^18.0.0",
26+
"@angular/platform-browser": "^18.0.0",
27+
"@angular/platform-browser-dynamic": "^18.0.0",
28+
"@angular/router": "^18.0.0",
29+
"@nativescript/angular": "^18.0.0",
30+
"@nativescript/core": "~8.8.0",
31+
"@nativescript/plugin-tools": "5.3.1",
32+
"@nativescript/types": "~8.8.0",
33+
"@nativescript/webpack": "~5.0.22",
34+
"@ngtools/webpack": "^18.0.0",
3435
"husky": "~9.0.0",
35-
"nativescript-vue": "~2.9.0",
36-
"nativescript-vue-template-compiler": "~2.9.0",
37-
"ng-packagr": "^17.0.0",
36+
"ng-packagr": "^18.0.0",
3837
"rxjs": "~7.8.0",
39-
"typescript": "~5.4.0",
40-
"zone.js": "~0.14.0",
41-
"@angular-devkit/build-angular": "^17.0.0"
38+
"typescript": "~5.5.0",
39+
"zone.js": "~0.14.0"
4240
},
4341
"lint-staged": {
4442
"**/*.{js,ts,scss,json,html}": [

0 commit comments

Comments
 (0)