Skip to content

Commit c9e90c5

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

35 files changed

+3948
-1620
lines changed

.eslintrc.json

+17-6
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

+3
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

+3
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

+2-2
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

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

apps/nativescript-starter-angular/package.json

+3-3
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

+1-7
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

+2-2
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

+1-7
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

+3-3
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",

apps/nativescript-starter-react/project.json

+1-7
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-react/**/*.ts",
46-
"apps/nativescript-starter-react/src/**/*.html"
47-
]
48-
}
42+
"executor": "@nx/eslint:lint"
4943
}
5044
}
5145
}
+26-27
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,28 @@
11
{
2-
"name": "stackblitz-nativescript-solid",
3-
"main": "src/app.js",
4-
"version": "1.0.0",
5-
"private": true,
6-
"scripts": {},
7-
"dependencies": {
8-
"@nativescript-community/solid-js": "^0.0.6",
9-
"@nativescript/core": "~8.7.0",
10-
"dominative": "^0.1.3",
11-
"solid-js": "^1.8.16",
12-
"undom-ng": "^1.1.2"
13-
},
14-
"devDependencies": {
15-
"@babel/core": "^7.24.4",
16-
"@babel/preset-env": "^7.24.4",
17-
"@babel/preset-typescript": "^7.24.1",
18-
"@nativescript/preview-cli": "^1.0.13",
19-
"@nativescript/stackblitz": "0.0.8",
20-
"@nativescript/tailwind": "~2.1.0",
21-
"@nativescript/webpack": "~5.0.0",
22-
"babel": "^6.23.0",
23-
"babel-loader": "^9.1.3",
24-
"babel-preset-solid": "^1.8.8",
25-
"solid-refresh": "^0.7.5",
26-
"tailwindcss": "~3.4.3"
27-
}
2+
"name": "stackblitz-nativescript-solid",
3+
"main": "src/app.js",
4+
"version": "1.0.0",
5+
"private": true,
6+
"scripts": {},
7+
"dependencies": {
8+
"@nativescript-community/solid-js": "^0.0.6",
9+
"@nativescript/core": "~8.8.0",
10+
"dominative": "^0.1.3",
11+
"solid-js": "^1.8.16",
12+
"undom-ng": "^1.1.2"
13+
},
14+
"devDependencies": {
15+
"@babel/core": "^7.24.4",
16+
"@babel/preset-env": "^7.24.4",
17+
"@babel/preset-typescript": "^7.24.1",
18+
"@nativescript/preview-cli": "^1.0.13",
19+
"@nativescript/stackblitz": "0.0.8",
20+
"@nativescript/tailwind": "~2.1.0",
21+
"@nativescript/webpack": "~5.0.0",
22+
"babel": "^6.23.0",
23+
"babel-loader": "^9.1.3",
24+
"babel-preset-solid": "^1.8.8",
25+
"solid-refresh": "^0.7.5",
26+
"tailwindcss": "~3.4.3"
2827
}
29-
28+
}

apps/nativescript-starter-solid/project.json

+1-7
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-solid/**/*.ts",
46-
"apps/nativescript-starter-solid/src/**/*.html"
47-
]
48-
}
42+
"executor": "@nx/eslint:lint"
4943
}
5044
}
5145
}

apps/nativescript-starter-svelte/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"version": "1.0.0",
55
"private": true,
66
"dependencies": {
7-
"@nativescript/core": "~8.7.0",
7+
"@nativescript/core": "~8.8.0",
88
"svelte-native": "~1.0.0"
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",
14-
"@nativescript/types-minimal": "~8.7.0",
14+
"@nativescript/types-minimal": "~8.8.0",
1515
"@nativescript/webpack": "~5.0.0",
1616
"svelte": "~4.2.0",
1717
"svelte-loader": "^3.2.0",

apps/nativescript-starter-svelte/project.json

+1-7
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-svelte/**/*.ts",
46-
"apps/nativescript-starter-svelte/src/**/*.html"
47-
]
48-
}
42+
"executor": "@nx/eslint:lint"
4943
}
5044
}
5145
}

apps/nativescript-starter-typescript/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
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",
14-
"@nativescript/types-minimal": "~8.7.0",
14+
"@nativescript/types-minimal": "~8.8.0",
1515
"@nativescript/webpack": "~5.0.0",
1616
"tailwindcss": "~3.4.0",
1717
"typescript": "~5.4.0"

apps/nativescript-starter-typescript/project.json

+1-7
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-typescript/**/*.ts",
46-
"apps/nativescript-starter-typescript/src/**/*.html"
47-
]
48-
}
42+
"executor": "@nx/eslint:lint"
4943
}
5044
}
5145
}

apps/nativescript-starter-vue/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"version": "1.0.0",
55
"private": true,
66
"dependencies": {
7-
"@nativescript/core": "~8.7.0",
7+
"@nativescript/core": "~8.8.0",
88
"nativescript-vue": "~2.9.0"
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",
14-
"@nativescript/types-minimal": "~8.7.0",
14+
"@nativescript/types-minimal": "~8.8.0",
1515
"@nativescript/webpack": "~5.0.0",
1616
"@types/node": "^20.0.0",
1717
"nativescript-vue-template-compiler": "~2.9.0",

apps/nativescript-starter-vue/project.json

+1-7
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-vue/**/*.ts",
46-
"apps/nativescript-starter-vue/src/**/*.html"
47-
]
48-
}
42+
"executor": "@nx/eslint:lint"
4943
}
5044
}
5145
}

jest.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { getJestProjects } from '@nrwl/jest';
1+
import { getJestProjects } from '@nx/jest';
22

33
export default {
44
projects: getJestProjects(),

jest.preset.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const nxPreset = require('@nrwl/jest/preset').default;
1+
const nxPreset = require('@nx/jest/preset').default;
22

33
module.exports = { ...nxPreset };

0 commit comments

Comments
 (0)