create-vite-extra 2.0.1 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -31
- package/index.js +47 -6
- package/package.json +1 -1
- package/template-deno-lit/vite.config.mjs +1 -1
- package/template-deno-lit-ts/vite.config.mts +1 -1
- package/template-deno-preact/vite.config.mjs +4 -4
- package/template-deno-preact-ts/vite.config.mts +4 -4
- package/template-deno-react/vite.config.mjs +2 -2
- package/template-deno-react-ts/vite.config.mts +2 -2
- package/template-deno-solid/vite.config.mjs +3 -3
- package/template-deno-solid-ts/vite.config.mts +3 -3
- package/template-deno-svelte/vite.config.mjs +3 -3
- package/template-deno-svelte-ts/vite.config.mts +3 -3
- package/template-deno-vue/vite.config.mjs +3 -3
- package/template-deno-vue-ts/vite.config.mts +3 -3
- package/template-library/package.json +1 -1
- package/template-library-ts/package.json +2 -2
- package/template-library-ts/tsconfig.json +1 -1
- package/template-ssr-preact/package.json +4 -4
- package/template-ssr-preact-ts/package.json +6 -6
- package/template-ssr-preact-ts/tsconfig.json +1 -1
- package/template-ssr-preact-ts/tsconfig.node.json +2 -6
- package/template-ssr-react/package.json +5 -5
- package/template-ssr-react-ts/package.json +7 -7
- package/template-ssr-react-ts/tsconfig.json +1 -1
- package/template-ssr-react-ts/tsconfig.node.json +2 -6
- package/template-ssr-solid/package.json +4 -4
- package/template-ssr-solid-ts/package.json +5 -5
- package/template-ssr-solid-ts/tsconfig.json +1 -1
- package/template-ssr-solid-ts/tsconfig.node.json +2 -6
- package/template-ssr-svelte/package.json +4 -4
- package/template-ssr-svelte-ts/package.json +7 -7
- package/template-ssr-svelte-ts/tsconfig.node.json +1 -5
- package/template-ssr-transform/package.json +1 -1
- package/template-ssr-vanilla/package.json +2 -2
- package/template-ssr-vanilla-ts/package.json +4 -4
- package/template-ssr-vanilla-ts/tsconfig.json +2 -4
- package/template-ssr-vue/package.json +4 -4
- package/template-ssr-vue-streaming/README.md +7 -0
- package/template-ssr-vue-streaming/_gitignore +24 -0
- package/template-ssr-vue-streaming/index.html +14 -0
- package/template-ssr-vue-streaming/package.json +24 -0
- package/template-ssr-vue-streaming/public/vite.svg +1 -0
- package/template-ssr-vue-streaming/server.js +77 -0
- package/template-ssr-vue-streaming/src/App.vue +31 -0
- package/template-ssr-vue-streaming/src/assets/vue.svg +1 -0
- package/template-ssr-vue-streaming/src/components/HelloWorld.vue +40 -0
- package/template-ssr-vue-streaming/src/entry-client.js +6 -0
- package/template-ssr-vue-streaming/src/entry-server.js +15 -0
- package/template-ssr-vue-streaming/src/main.js +10 -0
- package/template-ssr-vue-streaming/src/style.css +79 -0
- package/template-ssr-vue-streaming/vite.config.js +7 -0
- package/template-ssr-vue-streaming-ts/README.md +16 -0
- package/template-ssr-vue-streaming-ts/_gitignore +24 -0
- package/template-ssr-vue-streaming-ts/index.html +14 -0
- package/template-ssr-vue-streaming-ts/package.json +28 -0
- package/template-ssr-vue-streaming-ts/public/vite.svg +1 -0
- package/template-ssr-vue-streaming-ts/server.js +77 -0
- package/template-ssr-vue-streaming-ts/src/App.vue +31 -0
- package/template-ssr-vue-streaming-ts/src/assets/vue.svg +1 -0
- package/template-ssr-vue-streaming-ts/src/components/HelloWorld.vue +38 -0
- package/template-ssr-vue-streaming-ts/src/entry-client.ts +6 -0
- package/template-ssr-vue-streaming-ts/src/entry-server.ts +15 -0
- package/template-ssr-vue-streaming-ts/src/main.ts +10 -0
- package/template-ssr-vue-streaming-ts/src/style.css +79 -0
- package/template-ssr-vue-streaming-ts/src/vite-env.d.ts +7 -0
- package/template-ssr-vue-streaming-ts/tsconfig.json +25 -0
- package/{template-ssr-vanilla-ts → template-ssr-vue-streaming-ts}/tsconfig.node.json +2 -5
- package/template-ssr-vue-streaming-ts/vite.config.ts +7 -0
- package/template-ssr-vue-ts/package.json +7 -7
- package/template-ssr-vue-ts/tsconfig.json +1 -1
- package/template-ssr-vue-ts/tsconfig.node.json +2 -6
package/README.md
CHANGED
|
@@ -58,37 +58,39 @@ bunx create-vite my-vue-app --template ssr-vue
|
|
|
58
58
|
|
|
59
59
|
Currently supported template presets include:
|
|
60
60
|
|
|
61
|
-
| Template
|
|
62
|
-
|
|
|
63
|
-
| `ssr-vanilla`
|
|
64
|
-
| `ssr-vanilla-ts`
|
|
65
|
-
| `ssr-vue`
|
|
66
|
-
| `ssr-vue-ts`
|
|
67
|
-
| `ssr-
|
|
68
|
-
| `ssr-
|
|
69
|
-
| `ssr-react
|
|
70
|
-
| `ssr-react-
|
|
71
|
-
| `ssr-
|
|
72
|
-
| `ssr-
|
|
73
|
-
| `ssr-
|
|
74
|
-
| `ssr-
|
|
75
|
-
| `
|
|
76
|
-
| `
|
|
77
|
-
| `deno-
|
|
78
|
-
| `deno-
|
|
79
|
-
| `deno-
|
|
80
|
-
| `deno-
|
|
81
|
-
| `deno-react
|
|
82
|
-
| `deno-react-
|
|
83
|
-
| `deno-
|
|
84
|
-
| `deno-
|
|
85
|
-
| `deno-
|
|
86
|
-
| `deno-
|
|
87
|
-
| `deno-
|
|
88
|
-
| `deno-
|
|
89
|
-
| `
|
|
90
|
-
| `
|
|
91
|
-
| `
|
|
61
|
+
| Template | Try online |
|
|
62
|
+
| ---------------------- | ------------------------------------------------------------------------------------------------------------------ |
|
|
63
|
+
| `ssr-vanilla` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-ssr-vanilla) |
|
|
64
|
+
| `ssr-vanilla-ts` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-ssr-vanilla-ts) |
|
|
65
|
+
| `ssr-vue` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-ssr-vue) |
|
|
66
|
+
| `ssr-vue-ts` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-ssr-vue-ts) |
|
|
67
|
+
| `ssr-vue-streaming` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-ssr-vue-streaming) |
|
|
68
|
+
| `ssr-vue-streaming-ts` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-ssr-vue-streaming-ts) |
|
|
69
|
+
| `ssr-react` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-ssr-react) |
|
|
70
|
+
| `ssr-react-ts` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-ssr-react-ts) |
|
|
71
|
+
| `ssr-react-swc` | |
|
|
72
|
+
| `ssr-react-swc-ts` | |
|
|
73
|
+
| `ssr-preact` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-ssr-preact) |
|
|
74
|
+
| `ssr-preact-ts` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-ssr-preact-ts) |
|
|
75
|
+
| `ssr-svelte` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-ssr-svelte) |
|
|
76
|
+
| `ssr-svelte-ts` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-ssr-svelte-ts) |
|
|
77
|
+
| `deno-vanilla` | |
|
|
78
|
+
| `deno-vanilla-ts` | |
|
|
79
|
+
| `deno-vue` | |
|
|
80
|
+
| `deno-vue-ts` | |
|
|
81
|
+
| `deno-react` | |
|
|
82
|
+
| `deno-react-ts` | |
|
|
83
|
+
| `deno-react-swc` | |
|
|
84
|
+
| `deno-react-swc-ts` | |
|
|
85
|
+
| `deno-preact` | |
|
|
86
|
+
| `deno-preact-ts` | |
|
|
87
|
+
| `deno-lit` | |
|
|
88
|
+
| `deno-lit-ts` | |
|
|
89
|
+
| `deno-svelte` | |
|
|
90
|
+
| `deno-svelte-ts` | |
|
|
91
|
+
| `library` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-library) |
|
|
92
|
+
| `library-ts` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-library-ts) |
|
|
93
|
+
| `ssr-transform` | [StackBlitz](https://stackblitz.com/fork/github/bluwy/create-vite-extra/tree/master/template-ssr-transform) |
|
|
92
94
|
|
|
93
95
|
You can use `.` for the project name to scaffold in the current directory.
|
|
94
96
|
|
package/index.js
CHANGED
|
@@ -46,14 +46,38 @@ const FRAMEWORKS = [
|
|
|
46
46
|
color: green,
|
|
47
47
|
variants: [
|
|
48
48
|
{
|
|
49
|
-
name: 'ssr-vue',
|
|
50
|
-
display: '
|
|
51
|
-
color:
|
|
49
|
+
name: 'ssr-vue-streaming',
|
|
50
|
+
display: 'Streaming',
|
|
51
|
+
color: green,
|
|
52
|
+
variants: [
|
|
53
|
+
{
|
|
54
|
+
name: 'ssr-vue-streaming',
|
|
55
|
+
display: 'JavaScript',
|
|
56
|
+
color: yellow
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
name: 'ssr-vue-streaming-ts',
|
|
60
|
+
display: 'TypeScript',
|
|
61
|
+
color: blue
|
|
62
|
+
}
|
|
63
|
+
]
|
|
52
64
|
},
|
|
53
65
|
{
|
|
54
|
-
name: 'ssr-vue
|
|
55
|
-
display: '
|
|
56
|
-
color:
|
|
66
|
+
name: 'ssr-vue',
|
|
67
|
+
display: 'Non-streaming',
|
|
68
|
+
color: green,
|
|
69
|
+
variants: [
|
|
70
|
+
{
|
|
71
|
+
name: 'ssr-vue',
|
|
72
|
+
display: 'JavaScript',
|
|
73
|
+
color: yellow
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
name: 'ssr-vue-ts',
|
|
77
|
+
display: 'TypeScript',
|
|
78
|
+
color: blue
|
|
79
|
+
}
|
|
80
|
+
]
|
|
57
81
|
}
|
|
58
82
|
]
|
|
59
83
|
},
|
|
@@ -354,6 +378,23 @@ async function init() {
|
|
|
354
378
|
}
|
|
355
379
|
})
|
|
356
380
|
},
|
|
381
|
+
// Variant 1
|
|
382
|
+
{
|
|
383
|
+
type: (framework) =>
|
|
384
|
+
framework && framework.variants ? 'select' : null,
|
|
385
|
+
name: 'variant',
|
|
386
|
+
message: reset('Select a variant:'),
|
|
387
|
+
// @ts-ignore
|
|
388
|
+
choices: (framework) =>
|
|
389
|
+
framework.variants.map((variant) => {
|
|
390
|
+
const variantColor = variant.color
|
|
391
|
+
return {
|
|
392
|
+
title: variantColor(variant.display || variant.name),
|
|
393
|
+
value: variant.variants ? variant : variant.name
|
|
394
|
+
}
|
|
395
|
+
})
|
|
396
|
+
},
|
|
397
|
+
// Variant 2
|
|
357
398
|
{
|
|
358
399
|
type: (framework) =>
|
|
359
400
|
framework && framework.variants ? 'select' : null,
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^5.0.
|
|
2
|
-
import preact from 'npm:@preact/preset-vite@^2.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.10'
|
|
2
|
+
import preact from 'npm:@preact/preset-vite@^2.7.0'
|
|
3
3
|
|
|
4
|
-
import 'npm:preact@^10.19.
|
|
5
|
-
import 'npm:preact@^10.19.
|
|
4
|
+
import 'npm:preact@^10.19.3'
|
|
5
|
+
import 'npm:preact@^10.19.3'
|
|
6
6
|
|
|
7
7
|
// https://vitejs.dev/config/
|
|
8
8
|
export default defineConfig({
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^5.0.
|
|
2
|
-
import preact from 'npm:@preact/preset-vite@^2.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.10'
|
|
2
|
+
import preact from 'npm:@preact/preset-vite@^2.7.0'
|
|
3
3
|
|
|
4
|
-
import 'npm:preact@^10.19.
|
|
5
|
-
import 'npm:preact@^10.19.
|
|
4
|
+
import 'npm:preact@^10.19.3'
|
|
5
|
+
import 'npm:preact@^10.19.3'
|
|
6
6
|
|
|
7
7
|
// https://vitejs.dev/config/
|
|
8
8
|
export default defineConfig({
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^5.0.
|
|
2
|
-
import react from 'npm:@vitejs/plugin-react@^4.2.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.10'
|
|
2
|
+
import react from 'npm:@vitejs/plugin-react@^4.2.1'
|
|
3
3
|
|
|
4
4
|
import 'npm:react@^18.2.0'
|
|
5
5
|
import 'npm:react-dom@^18.2.0'
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^5.0.
|
|
2
|
-
import react from 'npm:@vitejs/plugin-react@^4.2.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.10'
|
|
2
|
+
import react from 'npm:@vitejs/plugin-react@^4.2.1'
|
|
3
3
|
|
|
4
4
|
import 'npm:react@^18.2.0'
|
|
5
5
|
import 'npm:react-dom@^18.2.0'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^5.0.
|
|
2
|
-
import solid from 'npm:vite-plugin-solid@^2.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.10'
|
|
2
|
+
import solid from 'npm:vite-plugin-solid@^2.8.0'
|
|
3
3
|
|
|
4
|
-
import 'npm:solid-js@^1.8.
|
|
4
|
+
import 'npm:solid-js@^1.8.7'
|
|
5
5
|
|
|
6
6
|
// https://vitejs.dev/config/
|
|
7
7
|
export default defineConfig({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^5.0.
|
|
2
|
-
import solid from 'npm:vite-plugin-solid@^2.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.10'
|
|
2
|
+
import solid from 'npm:vite-plugin-solid@^2.8.0'
|
|
3
3
|
|
|
4
|
-
import 'npm:solid-js@^1.8.
|
|
4
|
+
import 'npm:solid-js@^1.8.7'
|
|
5
5
|
|
|
6
6
|
// https://vitejs.dev/config/
|
|
7
7
|
export default defineConfig({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^5.0.
|
|
2
|
-
import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^3.0.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.10'
|
|
2
|
+
import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^3.0.1'
|
|
3
3
|
|
|
4
|
-
import 'npm:svelte@^4.2.
|
|
4
|
+
import 'npm:svelte@^4.2.8'
|
|
5
5
|
|
|
6
6
|
// https://vitejs.dev/config/
|
|
7
7
|
export default defineConfig({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^5.0.
|
|
2
|
-
import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^3.0.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.10'
|
|
2
|
+
import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^3.0.1'
|
|
3
3
|
|
|
4
|
-
import 'npm:svelte@^4.2.
|
|
4
|
+
import 'npm:svelte@^4.2.8'
|
|
5
5
|
|
|
6
6
|
// https://vitejs.dev/config/
|
|
7
7
|
export default defineConfig({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^5.0.
|
|
2
|
-
import vue from 'npm:@vitejs/plugin-vue@^4.5.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.10'
|
|
2
|
+
import vue from 'npm:@vitejs/plugin-vue@^4.5.2'
|
|
3
3
|
|
|
4
|
-
import 'npm:vue@^3.3.
|
|
4
|
+
import 'npm:vue@^3.3.13'
|
|
5
5
|
|
|
6
6
|
// https://vitejs.dev/config/
|
|
7
7
|
export default defineConfig({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^5.0.
|
|
2
|
-
import vue from 'npm:@vitejs/plugin-vue@^4.5.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.10'
|
|
2
|
+
import vue from 'npm:@vitejs/plugin-vue@^4.5.2'
|
|
3
3
|
|
|
4
|
-
import 'npm:vue@^3.3.
|
|
4
|
+
import 'npm:vue@^3.3.13'
|
|
5
5
|
|
|
6
6
|
// https://vitejs.dev/config/
|
|
7
7
|
export default defineConfig({
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
|
-
"preact": "^10.19.
|
|
16
|
+
"preact": "^10.19.3",
|
|
17
17
|
"preact-render-to-string": "^6.3.1",
|
|
18
|
-
"sirv": "^2.0.
|
|
18
|
+
"sirv": "^2.0.4"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@preact/preset-vite": "^2.
|
|
21
|
+
"@preact/preset-vite": "^2.7.0",
|
|
22
22
|
"cross-env": "^7.0.3",
|
|
23
|
-
"vite": "^5.0.
|
|
23
|
+
"vite": "^5.0.10"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -13,16 +13,16 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
|
-
"preact": "^10.19.
|
|
16
|
+
"preact": "^10.19.3",
|
|
17
17
|
"preact-render-to-string": "^6.3.1",
|
|
18
|
-
"sirv": "^2.0.
|
|
18
|
+
"sirv": "^2.0.4"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@preact/preset-vite": "^2.
|
|
21
|
+
"@preact/preset-vite": "^2.7.0",
|
|
22
22
|
"@types/express": "^4.17.21",
|
|
23
|
-
"@types/node": "^20.
|
|
23
|
+
"@types/node": "^20.10.5",
|
|
24
24
|
"cross-env": "^7.0.3",
|
|
25
|
-
"typescript": "^5.
|
|
26
|
-
"vite": "^5.0.
|
|
25
|
+
"typescript": "^5.3.3",
|
|
26
|
+
"vite": "^5.0.10"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -3,13 +3,9 @@
|
|
|
3
3
|
"composite": true,
|
|
4
4
|
"skipLibCheck": true,
|
|
5
5
|
"module": "ESNext",
|
|
6
|
-
"moduleResolution": "
|
|
6
|
+
"moduleResolution": "Bundler",
|
|
7
7
|
"allowSyntheticDefaultImports": true,
|
|
8
8
|
"jsx": "preserve"
|
|
9
9
|
},
|
|
10
|
-
"include": [
|
|
11
|
-
"vite.config.ts",
|
|
12
|
-
"src/entry-server.tsx",
|
|
13
|
-
"src/vite-env.d.ts"
|
|
14
|
-
]
|
|
10
|
+
"include": ["vite.config.ts"]
|
|
15
11
|
}
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"express": "^4.18.2",
|
|
16
16
|
"react": "^18.2.0",
|
|
17
17
|
"react-dom": "^18.2.0",
|
|
18
|
-
"sirv": "^2.0.
|
|
18
|
+
"sirv": "^2.0.4"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@types/react": "^18.2.
|
|
22
|
-
"@types/react-dom": "^18.2.
|
|
23
|
-
"@vitejs/plugin-react": "^4.2.
|
|
21
|
+
"@types/react": "^18.2.45",
|
|
22
|
+
"@types/react-dom": "^18.2.18",
|
|
23
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
24
24
|
"cross-env": "^7.0.3",
|
|
25
|
-
"vite": "^5.0.
|
|
25
|
+
"vite": "^5.0.10"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -15,16 +15,16 @@
|
|
|
15
15
|
"express": "^4.18.2",
|
|
16
16
|
"react": "^18.2.0",
|
|
17
17
|
"react-dom": "^18.2.0",
|
|
18
|
-
"sirv": "^2.0.
|
|
18
|
+
"sirv": "^2.0.4"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/express": "^4.17.21",
|
|
22
|
-
"@types/node": "^20.
|
|
23
|
-
"@types/react": "^18.2.
|
|
24
|
-
"@types/react-dom": "^18.2.
|
|
25
|
-
"@vitejs/plugin-react": "^4.2.
|
|
22
|
+
"@types/node": "^20.10.5",
|
|
23
|
+
"@types/react": "^18.2.45",
|
|
24
|
+
"@types/react-dom": "^18.2.18",
|
|
25
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
26
26
|
"cross-env": "^7.0.3",
|
|
27
|
-
"typescript": "^5.
|
|
28
|
-
"vite": "^5.0.
|
|
27
|
+
"typescript": "^5.3.3",
|
|
28
|
+
"vite": "^5.0.10"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -3,13 +3,9 @@
|
|
|
3
3
|
"composite": true,
|
|
4
4
|
"skipLibCheck": true,
|
|
5
5
|
"module": "ESNext",
|
|
6
|
-
"moduleResolution": "
|
|
6
|
+
"moduleResolution": "Bundler",
|
|
7
7
|
"allowSyntheticDefaultImports": true,
|
|
8
8
|
"jsx": "preserve"
|
|
9
9
|
},
|
|
10
|
-
"include": [
|
|
11
|
-
"vite.config.ts",
|
|
12
|
-
"src/entry-server.tsx",
|
|
13
|
-
"src/vite-env.d.ts"
|
|
14
|
-
]
|
|
10
|
+
"include": ["vite.config.ts"]
|
|
15
11
|
}
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
|
-
"sirv": "^2.0.
|
|
17
|
-
"solid-js": "^1.8.
|
|
16
|
+
"sirv": "^2.0.4",
|
|
17
|
+
"solid-js": "^1.8.7"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"cross-env": "^7.0.3",
|
|
21
|
-
"vite": "^5.0.
|
|
22
|
-
"vite-plugin-solid": "^2.
|
|
21
|
+
"vite": "^5.0.10",
|
|
22
|
+
"vite-plugin-solid": "^2.8.0"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
|
-
"sirv": "^2.0.
|
|
17
|
-
"solid-js": "^1.8.
|
|
16
|
+
"sirv": "^2.0.4",
|
|
17
|
+
"solid-js": "^1.8.7"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/express": "^4.17.21",
|
|
21
|
-
"@types/node": "^20.
|
|
21
|
+
"@types/node": "^20.10.5",
|
|
22
22
|
"cross-env": "^7.0.3",
|
|
23
|
-
"vite": "^5.0.
|
|
24
|
-
"vite-plugin-solid": "^2.
|
|
23
|
+
"vite": "^5.0.10",
|
|
24
|
+
"vite-plugin-solid": "^2.8.0"
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -3,13 +3,9 @@
|
|
|
3
3
|
"composite": true,
|
|
4
4
|
"skipLibCheck": true,
|
|
5
5
|
"module": "ESNext",
|
|
6
|
-
"moduleResolution": "
|
|
6
|
+
"moduleResolution": "Bundler",
|
|
7
7
|
"allowSyntheticDefaultImports": true,
|
|
8
8
|
"jsx": "preserve"
|
|
9
9
|
},
|
|
10
|
-
"include": [
|
|
11
|
-
"vite.config.ts",
|
|
12
|
-
"src/entry-server.tsx",
|
|
13
|
-
"src/vite-env.d.ts"
|
|
14
|
-
]
|
|
10
|
+
"include": ["vite.config.ts"]
|
|
15
11
|
}
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
|
-
"sirv": "^2.0.
|
|
16
|
+
"sirv": "^2.0.4"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@sveltejs/vite-plugin-svelte": "^3.0.
|
|
19
|
+
"@sveltejs/vite-plugin-svelte": "^3.0.1",
|
|
20
20
|
"cross-env": "^7.0.3",
|
|
21
|
-
"svelte": "^4.2.
|
|
22
|
-
"vite": "^5.0.
|
|
21
|
+
"svelte": "^4.2.8",
|
|
22
|
+
"vite": "^5.0.10"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -13,18 +13,18 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
|
-
"sirv": "^2.0.
|
|
16
|
+
"sirv": "^2.0.4"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@sveltejs/vite-plugin-svelte": "^3.0.
|
|
19
|
+
"@sveltejs/vite-plugin-svelte": "^3.0.1",
|
|
20
20
|
"@tsconfig/svelte": "^5.0.2",
|
|
21
21
|
"@types/express": "^4.17.21",
|
|
22
|
-
"@types/node": "^20.
|
|
22
|
+
"@types/node": "^20.10.5",
|
|
23
23
|
"cross-env": "^7.0.3",
|
|
24
|
-
"svelte": "^4.2.
|
|
25
|
-
"svelte-check": "^3.6.
|
|
24
|
+
"svelte": "^4.2.8",
|
|
25
|
+
"svelte-check": "^3.6.2",
|
|
26
26
|
"tslib": "^2.6.2",
|
|
27
|
-
"typescript": "^5.
|
|
28
|
-
"vite": "^5.0.
|
|
27
|
+
"typescript": "^5.3.3",
|
|
28
|
+
"vite": "^5.0.10"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
|
-
"sirv": "^2.0.
|
|
16
|
+
"sirv": "^2.0.4"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@types/express": "^4.17.21",
|
|
20
|
-
"@types/node": "^20.
|
|
20
|
+
"@types/node": "^20.10.5",
|
|
21
21
|
"cross-env": "^7.0.3",
|
|
22
|
-
"typescript": "^5.
|
|
23
|
-
"vite": "^5.0.
|
|
22
|
+
"typescript": "^5.3.3",
|
|
23
|
+
"vite": "^5.0.10"
|
|
24
24
|
}
|
|
25
25
|
}
|