create-vite-extra 1.1.0 → 2.0.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 +10 -1
- package/index.js +19 -7
- package/package.json +3 -6
- package/template-deno-lit/_gitignore +1 -0
- package/template-deno-lit/vite.config.mjs +1 -1
- package/template-deno-lit-ts/_gitignore +1 -0
- package/template-deno-lit-ts/vite.config.mts +1 -1
- package/template-deno-preact/_gitignore +1 -0
- package/template-deno-preact/vite.config.mjs +4 -4
- package/template-deno-preact-ts/_gitignore +1 -0
- package/template-deno-preact-ts/vite.config.mts +4 -4
- package/template-deno-react/_gitignore +1 -0
- package/template-deno-react/vite.config.mjs +3 -3
- package/template-deno-react-ts/_gitignore +1 -0
- package/template-deno-react-ts/vite.config.mts +3 -3
- package/template-deno-solid/_gitignore +1 -0
- package/template-deno-solid/vite.config.mjs +3 -3
- package/template-deno-solid-ts/_gitignore +1 -0
- package/template-deno-solid-ts/vite.config.mts +3 -3
- package/template-deno-svelte/_gitignore +1 -0
- package/template-deno-svelte/vite.config.mjs +3 -3
- package/template-deno-svelte-ts/_gitignore +1 -0
- package/template-deno-svelte-ts/vite.config.mts +3 -3
- package/template-deno-vanilla/_gitignore +1 -0
- package/template-deno-vanilla/style.css +0 -1
- package/template-deno-vanilla-ts/_gitignore +1 -0
- package/template-deno-vanilla-ts/src/style.css +0 -1
- package/template-deno-vue/_gitignore +1 -1
- package/template-deno-vue/src/style.css +0 -10
- package/template-deno-vue/vite.config.mjs +3 -3
- package/template-deno-vue-ts/_gitignore +1 -0
- package/template-deno-vue-ts/src/style.css +0 -1
- package/template-deno-vue-ts/vite.config.mts +3 -3
- package/template-library/package.json +1 -1
- package/template-library/style.css +0 -1
- package/template-library/vite.config.js +2 -2
- package/template-library-ts/package.json +2 -2
- package/template-library-ts/src/style.css +0 -1
- package/template-ssr-preact/package.json +4 -4
- package/template-ssr-preact-ts/package.json +7 -7
- package/template-ssr-preact-ts/tsconfig.json +4 -0
- package/template-ssr-react/package.json +4 -4
- package/template-ssr-react-ts/package.json +7 -7
- package/template-ssr-solid/package.json +3 -3
- package/template-ssr-solid-ts/package.json +5 -5
- package/template-ssr-svelte/package.json +3 -3
- package/template-ssr-svelte-ts/package.json +9 -9
- package/template-ssr-svelte-ts/tsconfig.json +1 -1
- package/template-ssr-transform/package.json +1 -1
- package/template-ssr-vanilla/package.json +1 -1
- package/template-ssr-vanilla/src/style.css +0 -1
- package/template-ssr-vanilla-ts/package.json +4 -4
- package/template-ssr-vanilla-ts/src/style.css +0 -1
- package/template-ssr-vue/package.json +3 -3
- package/template-ssr-vue/src/style.css +0 -10
- package/template-ssr-vue-ts/package.json +7 -7
- package/template-ssr-vue-ts/src/style.css +0 -1
- package/template-ssr-vue-ts/tsconfig.json +1 -1
package/README.md
CHANGED
|
@@ -29,6 +29,12 @@ With Deno:
|
|
|
29
29
|
$ deno run -A npm:create-vite-extra
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
With Bun:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
$ bunx create-vite-extra
|
|
36
|
+
```
|
|
37
|
+
|
|
32
38
|
Then follow the prompts!
|
|
33
39
|
|
|
34
40
|
You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a Vite + SSR + Vue project, run:
|
|
@@ -45,6 +51,9 @@ pnpm create vite-extra my-vue-app --template ssr-vue
|
|
|
45
51
|
|
|
46
52
|
# Deno
|
|
47
53
|
deno run -A npm:create-vite-extra --template deno-vue
|
|
54
|
+
|
|
55
|
+
# Bun
|
|
56
|
+
bunx create-vite my-vue-app --template ssr-vue
|
|
48
57
|
```
|
|
49
58
|
|
|
50
59
|
Currently supported template presets include:
|
|
@@ -103,4 +112,4 @@ npx degit user/project#main my-project
|
|
|
103
112
|
|
|
104
113
|
## Attribution
|
|
105
114
|
|
|
106
|
-
This project is originally a fork of [create-vite](https://github.com/vitejs/vite/tree/main/packages/create-vite). Credit goes to all of
|
|
115
|
+
This project is originally a fork of [create-vite](https://github.com/vitejs/vite/tree/main/packages/create-vite). Credit goes to all of its contributors.
|
package/index.js
CHANGED
|
@@ -563,20 +563,32 @@ function setupReactSwc(root, { isTs, isDeno }) {
|
|
|
563
563
|
editFile(path.resolve(root, 'deno.json'), (content) => {
|
|
564
564
|
return content.replace(/deno run -A/g, 'deno run -A --unstable')
|
|
565
565
|
})
|
|
566
|
+
editFile(
|
|
567
|
+
path.resolve(root, `vite.config.m${isTs ? 'ts' : 'js'}`),
|
|
568
|
+
(content) => {
|
|
569
|
+
return content.replace(
|
|
570
|
+
/@vitejs\/plugin-react@.+?'/,
|
|
571
|
+
"@vitejs/plugin-react-swc@^3.5.0'"
|
|
572
|
+
)
|
|
573
|
+
}
|
|
574
|
+
)
|
|
566
575
|
} else {
|
|
567
576
|
editFile(path.resolve(root, 'package.json'), (content) => {
|
|
568
577
|
return content.replace(
|
|
569
578
|
/"@vitejs\/plugin-react": ".+?"/,
|
|
570
|
-
`"@vitejs/plugin-react-swc": "^3.
|
|
579
|
+
`"@vitejs/plugin-react-swc": "^3.5.0"`
|
|
571
580
|
)
|
|
572
581
|
})
|
|
582
|
+
editFile(
|
|
583
|
+
path.resolve(root, `vite.config.${isTs ? 'ts' : 'js'}`),
|
|
584
|
+
(content) => {
|
|
585
|
+
return content.replace(
|
|
586
|
+
'@vitejs/plugin-react',
|
|
587
|
+
'@vitejs/plugin-react-swc'
|
|
588
|
+
)
|
|
589
|
+
}
|
|
590
|
+
)
|
|
573
591
|
}
|
|
574
|
-
editFile(
|
|
575
|
-
path.resolve(root, `vite.config.${isDeno ? 'm' : ''}${isTs ? 'ts' : 'js'}`),
|
|
576
|
-
(content) => {
|
|
577
|
-
return content.replace('@vitejs/plugin-react', '@vitejs/plugin-react-swc')
|
|
578
|
-
}
|
|
579
|
-
)
|
|
580
592
|
}
|
|
581
593
|
|
|
582
594
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-vite-extra",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Bjorn Lu",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
],
|
|
18
18
|
"main": "index.js",
|
|
19
19
|
"engines": {
|
|
20
|
-
"node": "^
|
|
20
|
+
"node": "^18.0.0 || >=20.0.0"
|
|
21
21
|
},
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|
|
@@ -32,10 +32,7 @@
|
|
|
32
32
|
"minimist": "^1.2.8",
|
|
33
33
|
"prompts": "^2.4.2"
|
|
34
34
|
},
|
|
35
|
-
"devDependencies": {
|
|
36
|
-
"taze": "^0.10.2"
|
|
37
|
-
},
|
|
38
35
|
"scripts": {
|
|
39
|
-
"update-deps": "
|
|
36
|
+
"update-deps": "pnpm update -r --latest && node update-deno-deps.js"
|
|
40
37
|
}
|
|
41
38
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^
|
|
2
|
-
import preact from 'npm:@preact/preset-vite@^2.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.0'
|
|
2
|
+
import preact from 'npm:@preact/preset-vite@^2.6.0'
|
|
3
3
|
|
|
4
|
-
import 'npm:preact@^10.
|
|
5
|
-
import 'npm:preact@^10.
|
|
4
|
+
import 'npm:preact@^10.19.2'
|
|
5
|
+
import 'npm:preact@^10.19.2'
|
|
6
6
|
|
|
7
7
|
// https://vitejs.dev/config/
|
|
8
8
|
export default defineConfig({
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^
|
|
2
|
-
import preact from 'npm:@preact/preset-vite@^2.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.0'
|
|
2
|
+
import preact from 'npm:@preact/preset-vite@^2.6.0'
|
|
3
3
|
|
|
4
|
-
import 'npm:preact@^10.
|
|
5
|
-
import 'npm:preact@^10.
|
|
4
|
+
import 'npm:preact@^10.19.2'
|
|
5
|
+
import 'npm:preact@^10.19.2'
|
|
6
6
|
|
|
7
7
|
// https://vitejs.dev/config/
|
|
8
8
|
export default defineConfig({
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^
|
|
2
|
-
import react from 'npm:@vitejs/plugin-react@^4.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.0'
|
|
2
|
+
import react from 'npm:@vitejs/plugin-react@^4.2.0'
|
|
3
3
|
|
|
4
4
|
import 'npm:react@^18.2.0'
|
|
5
|
-
import 'npm:react-dom@^18.2.0
|
|
5
|
+
import 'npm:react-dom@^18.2.0'
|
|
6
6
|
|
|
7
7
|
// https://vitejs.dev/config/
|
|
8
8
|
export default defineConfig({
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^
|
|
2
|
-
import react from 'npm:@vitejs/plugin-react@^4.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.0'
|
|
2
|
+
import react from 'npm:@vitejs/plugin-react@^4.2.0'
|
|
3
3
|
|
|
4
4
|
import 'npm:react@^18.2.0'
|
|
5
|
-
import 'npm:react-dom@^18.2.0
|
|
5
|
+
import 'npm:react-dom@^18.2.0'
|
|
6
6
|
|
|
7
7
|
// https://vitejs.dev/config/
|
|
8
8
|
export default defineConfig({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^
|
|
2
|
-
import solid from 'npm:vite-plugin-solid@^2.7.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.0'
|
|
2
|
+
import solid from 'npm:vite-plugin-solid@^2.7.2'
|
|
3
3
|
|
|
4
|
-
import 'npm:solid-js@^1.
|
|
4
|
+
import 'npm:solid-js@^1.8.5'
|
|
5
5
|
|
|
6
6
|
// https://vitejs.dev/config/
|
|
7
7
|
export default defineConfig({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^
|
|
2
|
-
import solid from 'npm:vite-plugin-solid@^2.7.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.0'
|
|
2
|
+
import solid from 'npm:vite-plugin-solid@^2.7.2'
|
|
3
3
|
|
|
4
|
-
import 'npm:solid-js@^1.
|
|
4
|
+
import 'npm:solid-js@^1.8.5'
|
|
5
5
|
|
|
6
6
|
// https://vitejs.dev/config/
|
|
7
7
|
export default defineConfig({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^
|
|
2
|
-
import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.0'
|
|
2
|
+
import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^3.0.0'
|
|
3
3
|
|
|
4
|
-
import 'npm:svelte@^
|
|
4
|
+
import 'npm:svelte@^4.2.3'
|
|
5
5
|
|
|
6
6
|
// https://vitejs.dev/config/
|
|
7
7
|
export default defineConfig({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^
|
|
2
|
-
import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.0'
|
|
2
|
+
import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^3.0.0'
|
|
3
3
|
|
|
4
|
-
import 'npm:svelte@^
|
|
4
|
+
import 'npm:svelte@^4.2.3'
|
|
5
5
|
|
|
6
6
|
// https://vitejs.dev/config/
|
|
7
7
|
export default defineConfig({
|
|
@@ -11,16 +11,6 @@
|
|
|
11
11
|
text-rendering: optimizeLegibility;
|
|
12
12
|
-webkit-font-smoothing: antialiased;
|
|
13
13
|
-moz-osx-font-smoothing: grayscale;
|
|
14
|
-
-webkit-text-size-adjust: 100%;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
a {
|
|
18
|
-
font-weight: 500;
|
|
19
|
-
color: #646cff;
|
|
20
|
-
text-decoration: inherit;
|
|
21
|
-
}
|
|
22
|
-
a:hover {
|
|
23
|
-
color: #535bf2;
|
|
24
14
|
}
|
|
25
15
|
|
|
26
16
|
a {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^
|
|
2
|
-
import vue from 'npm:@vitejs/plugin-vue@^4.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.0'
|
|
2
|
+
import vue from 'npm:@vitejs/plugin-vue@^4.5.0'
|
|
3
3
|
|
|
4
|
-
import 'npm:vue@^3.3.
|
|
4
|
+
import 'npm:vue@^3.3.8'
|
|
5
5
|
|
|
6
6
|
// https://vitejs.dev/config/
|
|
7
7
|
export default defineConfig({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineConfig } from 'npm:vite@^
|
|
2
|
-
import vue from 'npm:@vitejs/plugin-vue@^4.
|
|
1
|
+
import { defineConfig } from 'npm:vite@^5.0.0'
|
|
2
|
+
import vue from 'npm:@vitejs/plugin-vue@^4.5.0'
|
|
3
3
|
|
|
4
|
-
import 'npm:vue@^3.3.
|
|
4
|
+
import 'npm:vue@^3.3.8'
|
|
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.
|
|
17
|
-
"preact-render-to-string": "^6.
|
|
16
|
+
"preact": "^10.19.2",
|
|
17
|
+
"preact-render-to-string": "^6.3.1",
|
|
18
18
|
"sirv": "^2.0.3"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@preact/preset-vite": "^2.
|
|
21
|
+
"@preact/preset-vite": "^2.6.0",
|
|
22
22
|
"cross-env": "^7.0.3",
|
|
23
|
-
"vite": "^
|
|
23
|
+
"vite": "^5.0.0"
|
|
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.
|
|
17
|
-
"preact-render-to-string": "^6.
|
|
16
|
+
"preact": "^10.19.2",
|
|
17
|
+
"preact-render-to-string": "^6.3.1",
|
|
18
18
|
"sirv": "^2.0.3"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@preact/preset-vite": "^2.
|
|
22
|
-
"@types/express": "^4.17.
|
|
23
|
-
"@types/node": "^20.
|
|
21
|
+
"@preact/preset-vite": "^2.6.0",
|
|
22
|
+
"@types/express": "^4.17.21",
|
|
23
|
+
"@types/node": "^20.9.0",
|
|
24
24
|
"cross-env": "^7.0.3",
|
|
25
|
-
"typescript": "^5.
|
|
26
|
-
"vite": "^
|
|
25
|
+
"typescript": "^5.2.2",
|
|
26
|
+
"vite": "^5.0.0"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -5,6 +5,10 @@
|
|
|
5
5
|
"module": "ESNext",
|
|
6
6
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
7
7
|
"skipLibCheck": true,
|
|
8
|
+
"paths": {
|
|
9
|
+
"react": ["./node_modules/preact/compat/"],
|
|
10
|
+
"react-dom": ["./node_modules/preact/compat/"]
|
|
11
|
+
},
|
|
8
12
|
|
|
9
13
|
/* Bundler mode */
|
|
10
14
|
"moduleResolution": "bundler",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"sirv": "^2.0.3"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@types/react": "^18.2.
|
|
22
|
-
"@types/react-dom": "^18.2.
|
|
23
|
-
"@vitejs/plugin-react": "^4.
|
|
21
|
+
"@types/react": "^18.2.37",
|
|
22
|
+
"@types/react-dom": "^18.2.15",
|
|
23
|
+
"@vitejs/plugin-react": "^4.2.0",
|
|
24
24
|
"cross-env": "^7.0.3",
|
|
25
|
-
"vite": "^
|
|
25
|
+
"vite": "^5.0.0"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"sirv": "^2.0.3"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@types/express": "^4.17.
|
|
22
|
-
"@types/node": "^20.
|
|
23
|
-
"@types/react": "^18.2.
|
|
24
|
-
"@types/react-dom": "^18.2.
|
|
25
|
-
"@vitejs/plugin-react": "^4.
|
|
21
|
+
"@types/express": "^4.17.21",
|
|
22
|
+
"@types/node": "^20.9.0",
|
|
23
|
+
"@types/react": "^18.2.37",
|
|
24
|
+
"@types/react-dom": "^18.2.15",
|
|
25
|
+
"@vitejs/plugin-react": "^4.2.0",
|
|
26
26
|
"cross-env": "^7.0.3",
|
|
27
|
-
"typescript": "^5.
|
|
28
|
-
"vite": "^
|
|
27
|
+
"typescript": "^5.2.2",
|
|
28
|
+
"vite": "^5.0.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
16
|
"sirv": "^2.0.3",
|
|
17
|
-
"solid-js": "^1.
|
|
17
|
+
"solid-js": "^1.8.5"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"cross-env": "^7.0.3",
|
|
21
|
-
"vite": "^
|
|
22
|
-
"vite-plugin-solid": "^2.7.
|
|
21
|
+
"vite": "^5.0.0",
|
|
22
|
+
"vite-plugin-solid": "^2.7.2"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
16
|
"sirv": "^2.0.3",
|
|
17
|
-
"solid-js": "^1.
|
|
17
|
+
"solid-js": "^1.8.5"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@types/express": "^4.17.
|
|
21
|
-
"@types/node": "^20.
|
|
20
|
+
"@types/express": "^4.17.21",
|
|
21
|
+
"@types/node": "^20.9.0",
|
|
22
22
|
"cross-env": "^7.0.3",
|
|
23
|
-
"vite": "^
|
|
24
|
-
"vite-plugin-solid": "^2.7.
|
|
23
|
+
"vite": "^5.0.0",
|
|
24
|
+
"vite-plugin-solid": "^2.7.2"
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"sirv": "^2.0.3"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@sveltejs/vite-plugin-svelte": "^
|
|
19
|
+
"@sveltejs/vite-plugin-svelte": "^3.0.0",
|
|
20
20
|
"cross-env": "^7.0.3",
|
|
21
|
-
"svelte": "^
|
|
22
|
-
"vite": "^
|
|
21
|
+
"svelte": "^4.2.3",
|
|
22
|
+
"vite": "^5.0.0"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -16,15 +16,15 @@
|
|
|
16
16
|
"sirv": "^2.0.3"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@sveltejs/vite-plugin-svelte": "^
|
|
20
|
-
"@tsconfig/svelte": "^
|
|
21
|
-
"@types/express": "^4.17.
|
|
22
|
-
"@types/node": "^20.
|
|
19
|
+
"@sveltejs/vite-plugin-svelte": "^3.0.0",
|
|
20
|
+
"@tsconfig/svelte": "^5.0.2",
|
|
21
|
+
"@types/express": "^4.17.21",
|
|
22
|
+
"@types/node": "^20.9.0",
|
|
23
23
|
"cross-env": "^7.0.3",
|
|
24
|
-
"svelte": "^
|
|
25
|
-
"svelte-check": "^3.
|
|
26
|
-
"tslib": "^2.
|
|
27
|
-
"typescript": "^5.
|
|
28
|
-
"vite": "^
|
|
24
|
+
"svelte": "^4.2.3",
|
|
25
|
+
"svelte-check": "^3.6.0",
|
|
26
|
+
"tslib": "^2.6.2",
|
|
27
|
+
"typescript": "^5.2.2",
|
|
28
|
+
"vite": "^5.0.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"sirv": "^2.0.3"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@types/express": "^4.17.
|
|
20
|
-
"@types/node": "^20.
|
|
19
|
+
"@types/express": "^4.17.21",
|
|
20
|
+
"@types/node": "^20.9.0",
|
|
21
21
|
"cross-env": "^7.0.3",
|
|
22
|
-
"typescript": "^5.
|
|
23
|
-
"vite": "^
|
|
22
|
+
"typescript": "^5.2.2",
|
|
23
|
+
"vite": "^5.0.0"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
16
|
"sirv": "^2.0.3",
|
|
17
|
-
"vue": "^3.3.
|
|
17
|
+
"vue": "^3.3.8"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@vitejs/plugin-vue": "^4.
|
|
20
|
+
"@vitejs/plugin-vue": "^4.5.0",
|
|
21
21
|
"cross-env": "^7.0.3",
|
|
22
|
-
"vite": "^
|
|
22
|
+
"vite": "^5.0.0"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
@@ -11,16 +11,6 @@
|
|
|
11
11
|
text-rendering: optimizeLegibility;
|
|
12
12
|
-webkit-font-smoothing: antialiased;
|
|
13
13
|
-moz-osx-font-smoothing: grayscale;
|
|
14
|
-
-webkit-text-size-adjust: 100%;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
a {
|
|
18
|
-
font-weight: 500;
|
|
19
|
-
color: #646cff;
|
|
20
|
-
text-decoration: inherit;
|
|
21
|
-
}
|
|
22
|
-
a:hover {
|
|
23
|
-
color: #535bf2;
|
|
24
14
|
}
|
|
25
15
|
|
|
26
16
|
a {
|
|
@@ -14,15 +14,15 @@
|
|
|
14
14
|
"compression": "^1.7.4",
|
|
15
15
|
"express": "^4.18.2",
|
|
16
16
|
"sirv": "^2.0.3",
|
|
17
|
-
"vue": "^3.3.
|
|
17
|
+
"vue": "^3.3.8"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@types/express": "^4.17.
|
|
21
|
-
"@types/node": "^20.
|
|
22
|
-
"@vitejs/plugin-vue": "^4.
|
|
20
|
+
"@types/express": "^4.17.21",
|
|
21
|
+
"@types/node": "^20.9.0",
|
|
22
|
+
"@vitejs/plugin-vue": "^4.5.0",
|
|
23
23
|
"cross-env": "^7.0.3",
|
|
24
|
-
"typescript": "^5.
|
|
25
|
-
"vite": "^
|
|
26
|
-
"vue-tsc": "^1.
|
|
24
|
+
"typescript": "^5.2.2",
|
|
25
|
+
"vite": "^5.0.0",
|
|
26
|
+
"vue-tsc": "^1.8.22"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -20,6 +20,6 @@
|
|
|
20
20
|
"noUnusedParameters": true,
|
|
21
21
|
"noFallthroughCasesInSwitch": true
|
|
22
22
|
},
|
|
23
|
-
"include": ["src/**/*.ts", "src/**/*.
|
|
23
|
+
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
24
24
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
25
25
|
}
|