create-vite-extra 3.0.0 → 4.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.
Files changed (92) hide show
  1. package/README.md +1 -1
  2. package/index.js +2 -2
  3. package/package.json +3 -3
  4. package/template-deno-lit/deno.json +3 -3
  5. package/template-deno-lit/src/index.css +1 -1
  6. package/template-deno-lit-ts/deno.json +3 -3
  7. package/template-deno-lit-ts/src/index.css +1 -1
  8. package/template-deno-lit-ts/src/my-element.ts +0 -1
  9. package/template-deno-preact/deno.json +5 -5
  10. package/template-deno-preact/src/index.css +1 -1
  11. package/template-deno-preact-ts/deno.json +5 -5
  12. package/template-deno-preact-ts/src/app.tsx +0 -1
  13. package/template-deno-preact-ts/src/index.css +1 -1
  14. package/template-deno-react/deno.json +8 -8
  15. package/template-deno-react/src/App.jsx +0 -1
  16. package/template-deno-react/src/index.css +1 -1
  17. package/template-deno-react/src/main.jsx +0 -2
  18. package/template-deno-react-ts/deno.json +8 -8
  19. package/template-deno-react-ts/src/App.tsx +0 -2
  20. package/template-deno-react-ts/src/index.css +1 -1
  21. package/template-deno-react-ts/src/main.tsx +0 -2
  22. package/template-deno-solid/deno.json +5 -5
  23. package/template-deno-solid/src/index.css +1 -1
  24. package/template-deno-solid-ts/deno.json +5 -5
  25. package/template-deno-solid-ts/src/App.tsx +0 -1
  26. package/template-deno-solid-ts/src/index.css +1 -1
  27. package/template-deno-svelte/deno.json +5 -5
  28. package/template-deno-svelte/src/app.css +1 -1
  29. package/template-deno-svelte-ts/deno.json +5 -5
  30. package/template-deno-svelte-ts/src/app.css +1 -1
  31. package/template-deno-vanilla/deno.json +3 -3
  32. package/template-deno-vanilla/src/style.css +1 -1
  33. package/template-deno-vanilla-ts/deno.json +3 -3
  34. package/template-deno-vanilla-ts/src/style.css +1 -1
  35. package/template-deno-vue/deno.json +5 -5
  36. package/template-deno-vue/src/style.css +1 -1
  37. package/template-deno-vue-ts/deno.json +5 -5
  38. package/template-deno-vue-ts/src/style.css +1 -1
  39. package/template-library/package.json +1 -1
  40. package/template-library/style.css +1 -1
  41. package/template-library-ts/package.json +2 -2
  42. package/template-library-ts/src/style.css +1 -1
  43. package/template-library-ts/tsconfig.json +3 -3
  44. package/template-ssr-preact/package.json +7 -7
  45. package/template-ssr-preact/src/index.css +1 -1
  46. package/template-ssr-preact-ts/package.json +10 -10
  47. package/template-ssr-preact-ts/src/index.css +1 -1
  48. package/template-ssr-preact-ts/tsconfig.json +3 -3
  49. package/template-ssr-preact-ts/tsconfig.node.json +2 -2
  50. package/template-ssr-react/package.json +9 -9
  51. package/template-ssr-react/src/index.css +1 -1
  52. package/template-ssr-react-streaming/package.json +7 -7
  53. package/template-ssr-react-streaming/src/index.css +1 -1
  54. package/template-ssr-react-streaming-ts/package.json +12 -12
  55. package/template-ssr-react-streaming-ts/src/index.css +1 -1
  56. package/template-ssr-react-streaming-ts/tsconfig.json +3 -3
  57. package/template-ssr-react-streaming-ts/tsconfig.node.json +2 -2
  58. package/template-ssr-react-ts/package.json +12 -12
  59. package/template-ssr-react-ts/src/index.css +1 -1
  60. package/template-ssr-react-ts/tsconfig.json +3 -3
  61. package/template-ssr-react-ts/tsconfig.node.json +2 -2
  62. package/template-ssr-solid/package.json +6 -6
  63. package/template-ssr-solid/src/index.css +1 -1
  64. package/template-ssr-solid-ts/package.json +8 -8
  65. package/template-ssr-solid-ts/src/index.css +1 -1
  66. package/template-ssr-solid-ts/tsconfig.json +3 -3
  67. package/template-ssr-solid-ts/tsconfig.node.json +2 -2
  68. package/template-ssr-svelte/jsconfig.json +2 -2
  69. package/template-ssr-svelte/package.json +6 -6
  70. package/template-ssr-svelte/src/app.css +1 -1
  71. package/template-ssr-svelte-ts/package.json +10 -10
  72. package/template-ssr-svelte-ts/src/app.css +1 -1
  73. package/template-ssr-svelte-ts/tsconfig.json +2 -2
  74. package/template-ssr-svelte-ts/tsconfig.node.json +1 -1
  75. package/template-ssr-transform/package.json +1 -1
  76. package/template-ssr-vanilla/package.json +4 -4
  77. package/template-ssr-vanilla/src/style.css +1 -1
  78. package/template-ssr-vanilla-ts/package.json +7 -7
  79. package/template-ssr-vanilla-ts/src/style.css +1 -1
  80. package/template-ssr-vanilla-ts/tsconfig.json +3 -3
  81. package/template-ssr-vue/package.json +6 -6
  82. package/template-ssr-vue/src/style.css +1 -1
  83. package/template-ssr-vue-streaming/package.json +6 -6
  84. package/template-ssr-vue-streaming/src/style.css +1 -1
  85. package/template-ssr-vue-streaming-ts/package.json +10 -10
  86. package/template-ssr-vue-streaming-ts/src/style.css +1 -1
  87. package/template-ssr-vue-streaming-ts/tsconfig.json +3 -3
  88. package/template-ssr-vue-streaming-ts/tsconfig.node.json +2 -2
  89. package/template-ssr-vue-ts/package.json +10 -10
  90. package/template-ssr-vue-ts/src/style.css +1 -1
  91. package/template-ssr-vue-ts/tsconfig.json +3 -3
  92. package/template-ssr-vue-ts/tsconfig.node.json +2 -2
@@ -2,9 +2,9 @@
2
2
  "compilerOptions": {
3
3
  "composite": true,
4
4
  "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
5
- "target": "ES2022",
5
+ "target": "es2023",
6
6
  "lib": ["ES2023"],
7
- "module": "ESNext",
7
+ "module": "esnext",
8
8
  "skipLibCheck": true,
9
9
 
10
10
  /* Bundler mode */
@@ -12,18 +12,18 @@
12
12
  "check": "vue-tsc"
13
13
  },
14
14
  "dependencies": {
15
- "compression": "^1.7.5",
16
- "express": "^5.0.1",
17
- "sirv": "^3.0.0",
18
- "vue": "^3.5.13"
15
+ "compression": "^1.8.0",
16
+ "express": "^5.1.0",
17
+ "sirv": "^3.0.1",
18
+ "vue": "^3.5.17"
19
19
  },
20
20
  "devDependencies": {
21
- "@types/express": "^5.0.0",
22
- "@types/node": "^22.10.0",
23
- "@vitejs/plugin-vue": "^5.2.1",
21
+ "@types/express": "^5.0.3",
22
+ "@types/node": "^24.0.10",
23
+ "@vitejs/plugin-vue": "^6.0.0",
24
24
  "cross-env": "^7.0.3",
25
- "typescript": "~5.7.2",
26
- "vite": "^6.0.1",
27
- "vue-tsc": "^2.1.10"
25
+ "typescript": "~5.8.3",
26
+ "vite": "^7.0.0",
27
+ "vue-tsc": "^2.2.12"
28
28
  }
29
29
  }
@@ -1,5 +1,5 @@
1
1
  :root {
2
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
2
+ font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
3
3
  line-height: 1.5;
4
4
  font-weight: 400;
5
5
 
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "target": "ES2020",
3
+ "target": "es2022",
4
4
  "useDefineForClassFields": true,
5
- "lib": ["ES2020", "DOM", "DOM.Iterable"],
6
- "module": "ESNext",
5
+ "lib": ["ES2022", "DOM", "DOM.Iterable"],
6
+ "module": "esnext",
7
7
  "skipLibCheck": true,
8
8
 
9
9
  /* Bundler mode */
@@ -2,9 +2,9 @@
2
2
  "compilerOptions": {
3
3
  "composite": true,
4
4
  "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
5
- "target": "ES2022",
5
+ "target": "es2023",
6
6
  "lib": ["ES2023"],
7
- "module": "ESNext",
7
+ "module": "esnext",
8
8
  "skipLibCheck": true,
9
9
 
10
10
  /* Bundler mode */