Skip to content

Commit 9e3aa15

Browse files
authored
feat: 8.8 updates (#233)
1 parent a0a41f6 commit 9e3aa15

File tree

30 files changed

+101
-98
lines changed

30 files changed

+101
-98
lines changed

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"prettier": "prettier --check --write packages/**/*.{js,ts,html,json,css,scss}",
77
"prepare-templates": "node prepareTemplates.js",
88
"publish.all": "npm run prepare-templates && lerna exec --no-bail --stream --concurrency 1 -- \"npm publish\"",
9+
"bump.all.patch": "lerna exec --no-bail --stream --concurrency 1 -- \"npm version patch\"",
10+
"bump.all.minor": "lerna exec --no-bail --stream --concurrency 1 -- \"npm version minor\"",
11+
"bump.all.major": "lerna exec --no-bail --stream --concurrency 1 -- \"npm version major\"",
912
"prepare": "husky install"
1013
},
1114
"devDependencies": {

packages/template-blank-ng/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "src/main.ts",
44
"displayName": "Blank",
55
"templateType": "App template",
6-
"version": "8.7.1",
6+
"version": "8.8.0",
77
"description": "Blank template for NativeScript apps using Angular",
88
"author": "NativeScript Team <[email protected]>",
99
"license": "Apache-2.0",
@@ -48,16 +48,16 @@
4848
"@angular/platform-browser-dynamic": "~18.0.0",
4949
"@angular/router": "~18.0.0",
5050
"@nativescript/angular": "^18.0.0",
51-
"@nativescript/core": "~8.7.0",
51+
"@nativescript/core": "~8.8.0",
5252
"@nativescript/theme": "~3.0.2",
5353
"rxjs": "~7.8.0",
5454
"zone.js": "~0.14.0"
5555
},
5656
"devDependencies": {
5757
"@angular-devkit/build-angular": "~18.0.0",
5858
"@angular/compiler-cli": "~18.0.0",
59-
"@nativescript/types": "~8.7.0",
60-
"@nativescript/webpack": "~5.0.21",
59+
"@nativescript/types": "~8.8.0",
60+
"@nativescript/webpack": "~5.0.0",
6161
"@ngtools/webpack": "~18.0.0",
6262
"typescript": "~5.4.0"
6363
}

packages/template-blank-react-vision/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript/template-blank-react-vision",
3-
"version": "8.7.1",
3+
"version": "8.8.0",
44
"description": "Nativescript visionOS Starter with React",
55
"author": "Jamie Birch <[email protected]>",
66
"main": "src/app.ts",
@@ -41,14 +41,14 @@
4141
"Vision Pro"
4242
],
4343
"dependencies": {
44-
"@nativescript/core": "~8.7.0",
44+
"@nativescript/core": "~8.8.0",
4545
"react": "^18.2.0",
4646
"react-nativescript": "^5.0.0",
4747
"react-nativescript-navigation": "^5.0.0"
4848
},
4949
"devDependencies": {
5050
"@nativescript/tailwind": "^2.1.0",
51-
"@nativescript/types": "~8.7.0",
51+
"@nativescript/types": "~8.8.0",
5252
"@nativescript/webpack": "~5.0.0",
5353
"@types/react": "npm:types-react-without-jsx-intrinsics@^18.0.17",
5454
"tailwindcss": "~3.4.0",

packages/template-blank-react/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript/template-blank-react",
3-
"version": "8.7.1",
3+
"version": "8.8.0",
44
"description": "Blank template for NativeScript apps using React.",
55
"author": "Jamie Birch <[email protected]>",
66
"main": "src/app.ts",
@@ -39,14 +39,14 @@
3939
"template"
4040
],
4141
"dependencies": {
42-
"@nativescript/core": "~8.7.0",
42+
"@nativescript/core": "~8.8.0",
4343
"react": "^18.2.0",
4444
"react-nativescript": "^5.0.0",
4545
"react-nativescript-navigation": "^5.0.0"
4646
},
4747
"devDependencies": {
48-
"@nativescript/types": "~8.7.0",
49-
"@nativescript/webpack": "~5.0.21",
48+
"@nativescript/types": "~8.8.0",
49+
"@nativescript/webpack": "~5.0.0",
5050
"@types/react": "npm:types-react-without-jsx-intrinsics@^18.0.17",
5151
"typescript": "~5.4.0"
5252
},

packages/template-blank-solid-vision/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nativescript/template-blank-solid-vision",
33
"main": "src/index.js",
4-
"version": "8.7.1",
4+
"version": "8.8.0",
55
"description": "Nativescript visionOS Starter with Solid",
66
"author": "NativeScript Team <[email protected]>",
77
"license": "Apache-2.0",
@@ -42,7 +42,7 @@
4242
"dependencies": {
4343
"@nativescript-community/solid-js": "^0.0.6",
4444
"@nativescript-community/ui-collectionview": "^5.3.0",
45-
"@nativescript/core": "~8.7.0",
45+
"@nativescript/core": "~8.8.0",
4646
"dominative": "^0.1.3",
4747
"solid-js": "^1.7.12",
4848
"solid-navigation": "^1.0.0-alpha.11",

packages/template-blank-solid/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nativescript/template-blank-solid",
33
"main": "src/app.js",
4-
"version": "8.7.1",
4+
"version": "8.8.0",
55
"description": "Nativescript Starter with Solid",
66
"author": "NativeScript Team <[email protected]>",
77
"license": "Apache-2.0",
@@ -40,7 +40,7 @@
4040
"scripts": {},
4141
"dependencies": {
4242
"@nativescript-community/solid-js": "^0.0.6",
43-
"@nativescript/core": "~8.7.0",
43+
"@nativescript/core": "~8.8.0",
4444
"dominative": "^0.1.3",
4545
"solid-js": "^1.8.16",
4646
"undom-ng": "^1.1.2"

packages/template-blank-svelte-vision/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nativescript/template-blank-svelte-vision",
33
"main": "src/app.ts",
4-
"version": "8.7.1",
4+
"version": "8.8.0",
55
"description": "Nativescript visionOS Starter with Svelte",
66
"author": "NativeScript Team <[email protected]>",
77
"license": "Apache-2.0",
@@ -39,11 +39,11 @@
3939
"url": "https://github.com/NativeScript/NativeScript/issues"
4040
},
4141
"dependencies": {
42-
"@nativescript/core": "~8.7.0",
42+
"@nativescript/core": "~8.8.0",
4343
"svelte-native": "~1.0.9"
4444
},
4545
"devDependencies": {
46-
"@nativescript/types": "~8.7.0",
46+
"@nativescript/types": "~8.8.0",
4747
"@nativescript/webpack": "~5.0.0",
4848
"svelte": "~4.2.2",
4949
"svelte-loader": "^3.2.0",

packages/template-blank-svelte/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "app/app.ts",
44
"displayName": "Blank Svelte",
55
"templateType": "App template",
6-
"version": "8.7.1",
6+
"version": "8.8.0",
77
"description": "Blank template for NativeScript apps using Svelte",
88
"author": "NativeScript Team <[email protected]>",
99
"license": "Apache-2.0",
@@ -42,13 +42,13 @@
4242
"url": "https://github.com/NativeScript/NativeScript/issues"
4343
},
4444
"dependencies": {
45-
"@nativescript/core": "~8.7.0",
45+
"@nativescript/core": "~8.8.0",
4646
"@nativescript/theme": "~3.0.2",
4747
"svelte-native": "~1.0.9"
4848
},
4949
"devDependencies": {
50-
"@nativescript/types": "~8.7.0",
51-
"@nativescript/webpack": "~5.0.21",
50+
"@nativescript/types": "~8.8.0",
51+
"@nativescript/webpack": "~5.0.0",
5252
"svelte": "~4.2.2",
5353
"svelte-loader": "^3.1.9",
5454
"svelte-native-preprocessor": "^1.0.0",

packages/template-blank-ts/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "app/app.ts",
44
"displayName": "Blank",
55
"templateType": "App template",
6-
"version": "8.7.1",
6+
"version": "8.8.0",
77
"description": "Blank template for Vanilla NativeScript apps using TypeScript",
88
"author": "NativeScript Team <[email protected]>",
99
"license": "Apache-2.0",
@@ -38,12 +38,12 @@
3838
"url": "https://github.com/NativeScript/NativeScript/issues"
3939
},
4040
"dependencies": {
41-
"@nativescript/core": "~8.7.0",
41+
"@nativescript/core": "~8.8.0",
4242
"@nativescript/theme": "~3.0.2"
4343
},
4444
"devDependencies": {
45-
"@nativescript/types": "~8.7.0",
46-
"@nativescript/webpack": "~5.0.21",
45+
"@nativescript/types": "~8.8.0",
46+
"@nativescript/webpack": "~5.0.0",
4747
"typescript": "~5.4.0"
4848
}
4949
}

packages/template-blank-vue-ts/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@nativescript/template-blank-vue-ts",
33
"main": "app/app.ts",
44
"displayName": "Blank Vue Typescript",
5-
"version": "8.7.1",
5+
"version": "8.8.0",
66
"description": "Blank Typescript template for NativeScript apps using Vue.",
77
"author": "NativeScript Team <[email protected]>",
88
"license": "Apache-2.0",
@@ -41,13 +41,13 @@
4141
"category-general"
4242
],
4343
"dependencies": {
44-
"@nativescript/core": "~8.7.0",
44+
"@nativescript/core": "~8.8.0",
4545
"@nativescript/theme": "~3.0.2",
4646
"nativescript-vue": "~2.9.3"
4747
},
4848
"devDependencies": {
49-
"@nativescript/types": "~8.7.0",
50-
"@nativescript/webpack": "~5.0.21",
49+
"@nativescript/types": "~8.8.0",
50+
"@nativescript/webpack": "~5.0.0",
5151
"@types/node": "~17.0.21",
5252
"nativescript-vue-template-compiler": "~2.9.3",
5353
"typescript": "~5.4.0",

packages/template-blank-vue-vision/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@nativescript/template-blank-vue-vision",
33
"main": "src/app.ts",
44
"displayName": "Blank Vue Typescript",
5-
"version": "8.7.1",
5+
"version": "8.8.0",
66
"description": "Nativescript visionOS Starter with Vue",
77
"author": "NativeScript Team <[email protected]>",
88
"license": "Apache-2.0",
@@ -38,12 +38,12 @@
3838
"Vision Pro"
3939
],
4040
"dependencies": {
41-
"@nativescript/core": "~8.7.0",
41+
"@nativescript/core": "~8.8.0",
4242
"nativescript-vue": "rc"
4343
},
4444
"devDependencies": {
4545
"@nativescript/tailwind": "^2.1.0",
46-
"@nativescript/types": "~8.7.0",
46+
"@nativescript/types": "~8.8.0",
4747
"@nativescript/webpack": "~5.0.0",
4848
"@types/node": "~17.0.21",
4949
"tailwindcss": "~3.4.0",

packages/template-blank-vue/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@nativescript/template-blank-vue",
33
"main": "app/app.js",
44
"displayName": "Blank",
5-
"version": "8.7.1",
5+
"version": "8.8.0",
66
"description": "Blank template for NativeScript apps using Vue.",
77
"author": "NativeScript Team <[email protected]>",
88
"license": "Apache-2.0",
@@ -40,12 +40,12 @@
4040
"category-general"
4141
],
4242
"dependencies": {
43-
"@nativescript/core": "~8.7.0",
43+
"@nativescript/core": "~8.8.0",
4444
"@nativescript/theme": "~3.0.2",
4545
"nativescript-vue": "~2.9.3"
4646
},
4747
"devDependencies": {
48-
"@nativescript/webpack": "~5.0.21",
48+
"@nativescript/webpack": "~5.0.0",
4949
"nativescript-vue-template-compiler": "~2.9.3"
5050
}
5151
}

packages/template-blank/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "app/app.js",
44
"displayName": "Blank",
55
"templateType": "App template",
6-
"version": "8.7.1",
6+
"version": "8.8.0",
77
"description": "Blank template for Vanilla NativeScript apps using JavaScript",
88
"author": "NativeScript Team <[email protected]>",
99
"license": "Apache-2.0",
@@ -38,10 +38,10 @@
3838
"url": "https://github.com/NativeScript/NativeScript/issues"
3939
},
4040
"dependencies": {
41-
"@nativescript/core": "~8.7.0",
41+
"@nativescript/core": "~8.8.0",
4242
"@nativescript/theme": "~3.0.2"
4343
},
4444
"devDependencies": {
45-
"@nativescript/webpack": "~5.0.21"
45+
"@nativescript/webpack": "~5.0.0"
4646
}
4747
}

packages/template-drawer-navigation-ng/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "src/main.ts",
44
"displayName": "Navigation Drawer",
55
"templateType": "App template",
6-
"version": "8.7.1",
6+
"version": "8.8.0",
77
"description": "Side navigation template",
88
"author": "NativeScript Team <[email protected]>",
99
"license": "Apache-2.0",
@@ -50,7 +50,7 @@
5050
"@angular/platform-browser-dynamic": "~18.0.0",
5151
"@angular/router": "~18.0.0",
5252
"@nativescript/angular": "^18.0.0",
53-
"@nativescript/core": "~8.7.0",
53+
"@nativescript/core": "~8.8.0",
5454
"@nativescript/theme": "~3.0.2",
5555
"nativescript-ui-sidedrawer": "~15.2.0",
5656
"rxjs": "~7.8.0",
@@ -59,8 +59,8 @@
5959
"devDependencies": {
6060
"@angular-devkit/build-angular": "~18.0.0",
6161
"@angular/compiler-cli": "~18.0.0",
62-
"@nativescript/types": "~8.7.0",
63-
"@nativescript/webpack": "~5.0.21",
62+
"@nativescript/types": "~8.8.0",
63+
"@nativescript/webpack": "~5.0.0",
6464
"@ngtools/webpack": "~18.0.0",
6565
"typescript": "~5.4.0"
6666
}

packages/template-drawer-navigation-ts/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "src/main.ts",
44
"displayName": "Navigation Drawer",
55
"templateType": "App template",
6-
"version": "8.7.1",
6+
"version": "8.8.0",
77
"description": "Side navigation template",
88
"author": "NativeScript Team <[email protected]>",
99
"license": "Apache-2.0",
@@ -40,14 +40,14 @@
4040
"url": "https://github.com/NativeScript/NativeScript/issues"
4141
},
4242
"dependencies": {
43-
"@nativescript/core": "~8.7.0",
43+
"@nativescript/core": "~8.8.0",
4444
"@nativescript/theme": "~3.0.2",
4545
"nativescript-ui-sidedrawer": "~15.2.0",
4646
"rxjs": "~7.8.0"
4747
},
4848
"devDependencies": {
49-
"@nativescript/types": "~8.7.0",
50-
"@nativescript/webpack": "~5.0.21",
49+
"@nativescript/types": "~8.8.0",
50+
"@nativescript/webpack": "~5.0.0",
5151
"typescript": "~5.4.0"
5252
}
5353
}

packages/template-drawer-navigation-vue/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "app/app.js",
44
"displayName": "Navigation Drawer",
55
"templateType": "App template",
6-
"version": "8.7.1",
6+
"version": "8.8.0",
77
"description": "Side navigation template using Vue.",
88
"author": "NativeScript Team <[email protected]>",
99
"license": "Apache-2.0",
@@ -41,14 +41,14 @@
4141
"url": "https://github.com/NativeScript/NativeScript/issues"
4242
},
4343
"dependencies": {
44-
"@nativescript/core": "~8.7.0",
44+
"@nativescript/core": "~8.8.0",
4545
"@nativescript/theme": "~3.0.2",
4646
"nativescript-ui-sidedrawer": "~15.2.0",
4747
"nativescript-vue": "~2.9.3",
4848
"rxjs": "~7.8.0"
4949
},
5050
"devDependencies": {
51-
"@nativescript/webpack": "~5.0.21",
51+
"@nativescript/webpack": "~5.0.0",
5252
"nativescript-vue-template-compiler": "~2.9.3"
5353
}
5454
}

0 commit comments

Comments
 (0)