Skip to content

Commit d2e7423

Browse files
authored
feat: 8.7 updates (#13)
1 parent 3d51ec1 commit d2e7423

File tree

19 files changed

+214
-53
lines changed

19 files changed

+214
-53
lines changed

.github/workflows/extract-templates.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
starter: ['angular', 'javascript', 'react', 'svelte', 'typescript', 'vue']
13+
starter: ['angular', 'javascript', 'react', 'solid', 'svelte', 'typescript', 'vue']
1414

1515
steps:
1616
- uses: actions/checkout@v3

apps/nativescript-starter-angular/package.json

+18-18
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,30 @@
44
"version": "1.0.0",
55
"private": true,
66
"dependencies": {
7-
"@angular/animations": "~17.0.0",
8-
"@angular/common": "~17.0.0",
9-
"@angular/compiler": "~17.0.0",
10-
"@angular/core": "~17.0.0",
11-
"@angular/forms": "~17.0.0",
12-
"@angular/platform-browser": "~17.0.0",
13-
"@angular/platform-browser-dynamic": "~17.0.0",
14-
"@angular/router": "~17.0.0",
15-
"@nativescript/angular": "~17.0.0",
16-
"@nativescript/core": "~8.5.0",
7+
"@angular/animations": "~17.3.0",
8+
"@angular/common": "~17.3.0",
9+
"@angular/compiler": "~17.3.0",
10+
"@angular/core": "~17.3.0",
11+
"@angular/forms": "~17.3.0",
12+
"@angular/platform-browser": "~17.3.0",
13+
"@angular/platform-browser-dynamic": "~17.3.0",
14+
"@angular/router": "~17.3.0",
15+
"@nativescript/angular": "^17.0.0",
16+
"@nativescript/core": "~8.7.0",
1717
"@nativescript/theme": "~3.0.2",
1818
"rxjs": "~7.8.0",
1919
"zone.js": "~0.14.2"
2020
},
2121
"devDependencies": {
22-
"@angular-devkit/build-angular": "~17.0.0",
23-
"@angular/compiler-cli": "~17.0.0",
24-
"@nativescript/preview-cli": "1.0.5",
22+
"@angular-devkit/build-angular": "~17.3.0",
23+
"@angular/compiler-cli": "~17.3.0",
24+
"@nativescript/preview-cli": "1.0.12",
2525
"@nativescript/stackblitz": "0.0.8",
26-
"@nativescript/tailwind": "^2.0.1",
27-
"@nativescript/types-minimal": "~8.5.0",
26+
"@nativescript/tailwind": "^2.1.0",
27+
"@nativescript/types-minimal": "~8.7.0",
2828
"@nativescript/webpack": "~5.0.0",
29-
"@ngtools/webpack": "~17.0.0",
30-
"tailwindcss": "~3.2.0",
31-
"typescript": "~5.2.2"
29+
"@ngtools/webpack": "~17.3.0",
30+
"tailwindcss": "~3.4.0",
31+
"typescript": "~5.4.0"
3232
}
3333
}

apps/nativescript-starter-javascript/package.json

+4-4
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.5.0",
7+
"@nativescript/core": "~8.7.0",
88
"@nativescript/theme": "~3.0.2"
99
},
1010
"devDependencies": {
11-
"@nativescript/preview-cli": "1.0.5",
11+
"@nativescript/preview-cli": "1.0.12",
1212
"@nativescript/stackblitz": "0.0.8",
13-
"@nativescript/tailwind": "^2.0.1",
13+
"@nativescript/tailwind": "^2.1.0",
1414
"@nativescript/webpack": "~5.0.0",
15-
"tailwindcss": "^3.1.8"
15+
"tailwindcss": "~3.4.0"
1616
}
1717
}

apps/nativescript-starter-react/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
"version": "1.0.0",
55
"private": true,
66
"dependencies": {
7-
"@nativescript/core": "~8.5.0",
7+
"@nativescript/core": "~8.7.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.5",
13+
"@nativescript/preview-cli": "1.0.12",
1414
"@nativescript/stackblitz": "0.0.8",
15-
"@nativescript/tailwind": "^2.0.1",
16-
"@nativescript/types-minimal": "~8.5.0",
15+
"@nativescript/tailwind": "^2.1.0",
16+
"@nativescript/types-minimal": "~8.7.0",
1717
"@nativescript/webpack": "~5.0.8",
1818
"@types/react": "npm:types-react-without-jsx-intrinsics@^18.0.17",
19-
"tailwindcss": "^3.1.8",
20-
"typescript": "~4.8.4"
19+
"tailwindcss": "~3.4.0",
20+
"typescript": "~5.4.0"
2121
},
2222
"scripts": {
2323
"type-check": "tsc --noEmit"
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# NativeScript
2+
hooks/
3+
node_modules/
4+
platforms/
5+
6+
# Logs
7+
logs
8+
*.log
9+
npm-debug.log*
10+
yarn-debug.log*
11+
yarn-error.log*
12+
13+
# General
14+
.DS_Store
15+
.AppleDouble
16+
.LSOverride
17+
.idea
18+
.cloud
19+
.project
20+
tmp/
21+
typings/
22+
23+
# Visual Studio Code
24+
.vscode/*
25+
!.vscode/settings.json
26+
!.vscode/tasks.json
27+
!.vscode/launch.json
28+
!.vscode/extensions.json
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
legacy-peer-deps=true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"installDependencies": true,
3+
"compileTrigger": "save",
4+
"startCommand": "setup-nativescript-stackblitz && ns preview"
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { NativeScriptConfig } from '@nativescript/core';
2+
3+
export default {
4+
id: 'org.nativescript.app',
5+
appPath: 'src',
6+
appResourcesPath: 'App_Resources',
7+
android: {
8+
v8Flags: '--expose_gc',
9+
markingMode: 'none',
10+
},
11+
} as NativeScriptConfig;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
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+
}
28+
}
29+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;
4+
5+
.h-center {
6+
/* {N} specific css */
7+
horizontal-align: center;
8+
}
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { Application } from '@nativescript/core';
2+
import { render } from '@nativescript-community/solid-js';
3+
4+
import { App } from './app.jsx';
5+
6+
document.body.actionBarHidden = false;
7+
render(App, document.body);
8+
9+
const create = () => document;
10+
11+
Application.run({ create });
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import { createSignal } from 'solid-js';
2+
import { Component } from './component.jsx';
3+
4+
document.body.actionBarHidden = false;
5+
6+
const App = () => {
7+
const [count, setCount] = createSignal(0);
8+
const increment = () => {
9+
setCount((c) => c + 1);
10+
};
11+
return (
12+
<>
13+
<actionbar title="Hello, SolidJS!"></actionbar>
14+
<stacklayout>
15+
<label class="text-center text-2xl my-4">
16+
You have tapped {count()} time{count() === 1 ? '' : 's'}
17+
</label>
18+
{
19+
// use 'on:___' instead of 'on___' for event handlers
20+
// See https://github.com/SudoMaker/dominative-solid#event-handling for detail
21+
}
22+
<button
23+
class="rounded-full bg-blue-500 text-white text-xl p-2 w-[300]"
24+
on:tap={increment}
25+
>
26+
Tap me!
27+
</button>
28+
<Component count={count} />
29+
</stacklayout>
30+
</>
31+
);
32+
};
33+
34+
export { App };
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export const Component = (props) => {
2+
const { count } = props;
3+
return (
4+
<label
5+
text={`${count()} tap${count() === 1 ? '' : 's'}`}
6+
on:tap={() => {
7+
alert(`You have tapped ${count()} time${count() === 1 ? '' : 's'}`);
8+
}}
9+
class="text-center text-2xl my-6 text-green-500"
10+
/>
11+
);
12+
};
13+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/** @type {import('tailwindcss').Config} */
2+
module.exports = {
3+
content: ['./src/**/*.{css,xml,html,vue,svelte,ts,tsx,jsx}'],
4+
// use the .ns-dark class to control dark mode (applied by NativeScript) - since 'media' (default) is not supported.
5+
darkMode: ['class', '.ns-dark'],
6+
theme: {
7+
extend: {},
8+
},
9+
plugins: [],
10+
corePlugins: {
11+
preflight: false, // disables browser-specific resets
12+
},
13+
};
14+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
const webpack = require('@nativescript/webpack');
2+
3+
module.exports = (env) => {
4+
webpack.init(env);
5+
6+
return webpack.resolveConfig();
7+
};

apps/nativescript-starter-svelte/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
"version": "1.0.0",
55
"private": true,
66
"dependencies": {
7-
"@nativescript/core": "~8.5.0",
7+
"@nativescript/core": "~8.7.0",
88
"svelte-native": "~1.0.0"
99
},
1010
"devDependencies": {
11-
"@nativescript/preview-cli": "1.0.5",
11+
"@nativescript/preview-cli": "1.0.12",
1212
"@nativescript/stackblitz": "0.0.8",
13-
"@nativescript/tailwind": "^2.0.1",
14-
"@nativescript/types-minimal": "~8.5.0",
13+
"@nativescript/tailwind": "^2.1.0",
14+
"@nativescript/types-minimal": "~8.7.0",
1515
"@nativescript/webpack": "~5.0.0",
16-
"svelte": "~3.44.0",
17-
"svelte-loader": "^3.1.2",
16+
"svelte": "~4.2.0",
17+
"svelte-loader": "^3.2.0",
1818
"svelte-native-preprocessor": "^1.0.0",
19-
"svelte-preprocess": "^4.7.0",
20-
"tailwindcss": "^3.1.8",
21-
"typescript": "~4.8.0"
19+
"svelte-preprocess": "^5.1.3",
20+
"tailwindcss": "~3.4.0",
21+
"typescript": "~5.4.0"
2222
}
2323
}

apps/nativescript-starter-typescript/package.json

+6-6
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.5.0",
7+
"@nativescript/core": "~8.7.0",
88
"@nativescript/theme": "~3.0.2"
99
},
1010
"devDependencies": {
11-
"@nativescript/preview-cli": "1.0.5",
11+
"@nativescript/preview-cli": "1.0.12",
1212
"@nativescript/stackblitz": "0.0.8",
13-
"@nativescript/tailwind": "^2.0.1",
14-
"@nativescript/types-minimal": "~8.5.0",
13+
"@nativescript/tailwind": "^2.1.0",
14+
"@nativescript/types-minimal": "~8.7.0",
1515
"@nativescript/webpack": "~5.0.0",
16-
"tailwindcss": "^3.1.8",
17-
"typescript": "~4.8.0"
16+
"tailwindcss": "~3.4.0",
17+
"typescript": "~5.4.0"
1818
}
1919
}

apps/nativescript-starter-vue/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
"version": "1.0.0",
55
"private": true,
66
"dependencies": {
7-
"@nativescript/core": "~8.5.0",
7+
"@nativescript/core": "~8.7.0",
88
"nativescript-vue": "~2.9.0"
99
},
1010
"devDependencies": {
11-
"@nativescript/preview-cli": "1.0.5",
11+
"@nativescript/preview-cli": "1.0.12",
1212
"@nativescript/stackblitz": "0.0.8",
13-
"@nativescript/tailwind": "^2.0.1",
14-
"@nativescript/types-minimal": "~8.5.0",
13+
"@nativescript/tailwind": "^2.1.0",
14+
"@nativescript/types-minimal": "~8.7.0",
1515
"@nativescript/webpack": "~5.0.0",
16-
"@types/node": "~17.0.21",
16+
"@types/node": "^20.0.0",
1717
"nativescript-vue-template-compiler": "~2.9.0",
18-
"tailwindcss": "^3.1.8",
19-
"typescript": "~4.8.0",
18+
"tailwindcss": "~3.4.0",
19+
"typescript": "~5.4.0",
2020
"vue": "~2.6.12"
2121
}
2222
}

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
"prettier": "^2.6.2",
2828
"ts-jest": "28.0.8",
2929
"ts-node": "10.9.1",
30-
"typescript": "4.8.4"
30+
"typescript": "~5.4.0"
3131
},
3232
"dependencies": {
33-
"@nativescript/core": "~8.5.0",
33+
"@nativescript/core": "~8.7.0",
3434
"tslib": "^2.4.1"
3535
},
3636
"nativescript-nx": {

0 commit comments

Comments
 (0)