Skip to content

Commit c9e90c5

Browse files
authored
feat: NativeScript 8.8 (#15)
1 parent 0bf46bd commit c9e90c5

File tree

35 files changed

+3948
-1620
lines changed

35 files changed

+3948
-1620
lines changed

.eslintrc.json

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
{
22
"root": true,
33
"ignorePatterns": ["**/*"],
4-
"plugins": ["@nrwl/nx"],
4+
"plugins": ["@nx"],
55
"overrides": [
6+
{
7+
"files": "*.json",
8+
"parser": "jsonc-eslint-parser",
9+
"rules": {}
10+
},
611
{
712
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
813
"rules": {
9-
"@nrwl/nx/enforce-module-boundaries": [
14+
"@nx/enforce-module-boundaries": [
1015
"error",
1116
{
1217
"enforceBuildableLibDependency": true,
@@ -23,13 +28,19 @@
2328
},
2429
{
2530
"files": ["*.ts", "*.tsx"],
26-
"extends": ["plugin:@nrwl/nx/typescript"],
27-
"rules": {}
31+
"extends": ["plugin:@nx/typescript"],
32+
"rules": {
33+
"@typescript-eslint/no-extra-semi": "error",
34+
"no-extra-semi": "off"
35+
}
2836
},
2937
{
3038
"files": ["*.js", "*.jsx"],
31-
"extends": ["plugin:@nrwl/nx/javascript"],
32-
"rules": {}
39+
"extends": ["plugin:@nx/javascript"],
40+
"rules": {
41+
"@typescript-eslint/no-extra-semi": "error",
42+
"no-extra-semi": "off"
43+
}
3344
}
3445
]
3546
}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,6 @@ package-lock.json
4646
# System Files
4747
.DS_Store
4848
Thumbs.db
49+
50+
.nx/cache
51+
.nx/workspace-data

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22

33
/dist
44
/coverage
5+
6+
/.nx/cache
7+
/.nx/workspace-data

.vscode/extensions.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"recommendations": [
3-
43
"nrwl.angular-console",
5-
"esbenp.prettier-vscode"
4+
"esbenp.prettier-vscode",
5+
"firsttris.vscode-jest-runner"
66
]
77
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"eslint.validate": ["json"]
3+
}

apps/nativescript-starter-angular/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@
1313
"@angular/platform-browser-dynamic": "~18.0.0",
1414
"@angular/router": "~18.0.0",
1515
"@nativescript/angular": "^18.0.0",
16-
"@nativescript/core": "~8.7.0",
16+
"@nativescript/core": "~8.8.0",
1717
"@nativescript/theme": "~3.0.2",
1818
"rxjs": "~7.8.0",
1919
"zone.js": "~0.14.2"
2020
},
2121
"devDependencies": {
2222
"@angular-devkit/build-angular": "~18.0.0",
2323
"@angular/compiler-cli": "~18.0.0",
24-
"@nativescript/preview-cli": "1.0.12",
24+
"@nativescript/preview-cli": "1.0.13",
2525
"@nativescript/stackblitz": "0.0.8",
2626
"@nativescript/tailwind": "^2.1.0",
27-
"@nativescript/types-minimal": "~8.7.0",
27+
"@nativescript/types-minimal": "~8.8.0",
2828
"@nativescript/webpack": "~5.0.0",
2929
"@ngtools/webpack": "~18.0.0",
3030
"tailwindcss": "~3.4.0",

apps/nativescript-starter-angular/project.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,7 @@
3939
}
4040
},
4141
"lint": {
42-
"executor": "@nrwl/linter:eslint",
43-
"options": {
44-
"lintFilePatterns": [
45-
"apps/nativescript-starter-angular/**/*.ts",
46-
"apps/nativescript-starter-angular/src/**/*.html"
47-
]
48-
}
42+
"executor": "@nx/eslint:lint"
4943
}
5044
}
5145
}

apps/nativescript-starter-javascript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"version": "1.0.0",
55
"private": true,
66
"dependencies": {
7-
"@nativescript/core": "~8.7.0",
7+
"@nativescript/core": "~8.8.0",
88
"@nativescript/theme": "~3.0.2"
99
},
1010
"devDependencies": {
11-
"@nativescript/preview-cli": "1.0.12",
11+
"@nativescript/preview-cli": "1.0.13",
1212
"@nativescript/stackblitz": "0.0.8",
1313
"@nativescript/tailwind": "^2.1.0",
1414
"@nativescript/webpack": "~5.0.0",

apps/nativescript-starter-javascript/project.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,7 @@
3939
}
4040
},
4141
"lint": {
42-
"executor": "@nrwl/linter:eslint",
43-
"options": {
44-
"lintFilePatterns": [
45-
"apps/nativescript-starter-javascript/**/*.ts",
46-
"apps/nativescript-starter-javascript/src/**/*.html"
47-
]
48-
}
42+
"executor": "@nx/eslint:lint"
4943
}
5044
}
5145
}

apps/nativescript-starter-react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
"version": "1.0.0",
55
"private": true,
66
"dependencies": {
7-
"@nativescript/core": "~8.7.0",
7+
"@nativescript/core": "~8.8.0",
88
"react": "^18.2.0",
99
"react-nativescript": "^5.0.0",
1010
"react-nativescript-navigation": "^5.0.0"
1111
},
1212
"devDependencies": {
13-
"@nativescript/preview-cli": "1.0.12",
13+
"@nativescript/preview-cli": "1.0.13",
1414
"@nativescript/stackblitz": "0.0.8",
1515
"@nativescript/tailwind": "^2.1.0",
16-
"@nativescript/types-minimal": "~8.7.0",
16+
"@nativescript/types-minimal": "~8.8.0",
1717
"@nativescript/webpack": "~5.0.8",
1818
"@types/react": "npm:types-react-without-jsx-intrinsics@^18.0.17",
1919
"tailwindcss": "~3.4.0",

0 commit comments

Comments
 (0)