create-vite-extra 1.0.0 → 1.0.2

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 (70) hide show
  1. package/index.js +5 -1
  2. package/package.json +1 -1
  3. package/template-deno-lit/src/index.css +2 -3
  4. package/template-deno-lit/vite.config.mjs +2 -3
  5. package/template-deno-lit-ts/README.md +1 -1
  6. package/template-deno-lit-ts/index.html +1 -1
  7. package/template-deno-lit-ts/src/index.css +2 -3
  8. package/template-deno-lit-ts/tsconfig.json +6 -0
  9. package/template-deno-lit-ts/vite.config.mts +3 -4
  10. package/template-deno-preact/README.md +1 -1
  11. package/template-deno-preact/src/index.css +2 -3
  12. package/template-deno-preact/vite.config.mjs +2 -2
  13. package/template-deno-preact-ts/README.md +1 -1
  14. package/template-deno-preact-ts/src/index.css +2 -3
  15. package/template-deno-preact-ts/vite.config.mts +2 -2
  16. package/template-deno-react/README.md +1 -1
  17. package/template-deno-react/src/index.css +2 -3
  18. package/template-deno-react/vite.config.mjs +2 -2
  19. package/template-deno-react-ts/README.md +1 -1
  20. package/template-deno-react-ts/src/index.css +2 -3
  21. package/template-deno-react-ts/vite.config.mts +2 -2
  22. package/template-deno-solid/src/index.css +2 -3
  23. package/template-deno-solid/vite.config.mjs +1 -1
  24. package/template-deno-solid-ts/src/index.css +2 -3
  25. package/template-deno-solid-ts/vite.config.mts +1 -1
  26. package/template-deno-svelte/README.md +1 -1
  27. package/template-deno-svelte/src/app.css +2 -3
  28. package/template-deno-svelte/svelte.config.js +5 -0
  29. package/template-deno-svelte/vite.config.mjs +2 -2
  30. package/template-deno-svelte-ts/README.md +1 -1
  31. package/template-deno-svelte-ts/src/app.css +2 -3
  32. package/template-deno-svelte-ts/svelte.config.js +1 -1
  33. package/template-deno-svelte-ts/vite.config.mts +2 -2
  34. package/template-deno-vanilla/style.css +2 -3
  35. package/template-deno-vanilla-ts/src/style.css +2 -3
  36. package/template-deno-vue/README.md +1 -1
  37. package/template-deno-vue/src/style.css +2 -3
  38. package/template-deno-vue/vite.config.mjs +1 -1
  39. package/template-deno-vue-ts/src/style.css +2 -3
  40. package/template-deno-vue-ts/vite.config.mts +1 -1
  41. package/template-library/package.json +1 -1
  42. package/template-library/style.css +2 -3
  43. package/template-library-ts/package.json +1 -1
  44. package/template-library-ts/src/style.css +2 -3
  45. package/template-ssr-preact/package.json +2 -2
  46. package/template-ssr-preact/src/index.css +2 -3
  47. package/template-ssr-preact-ts/package.json +3 -2
  48. package/template-ssr-preact-ts/src/index.css +2 -3
  49. package/template-ssr-react/package.json +2 -2
  50. package/template-ssr-react/src/index.css +2 -3
  51. package/template-ssr-react-ts/package.json +4 -2
  52. package/template-ssr-react-ts/src/index.css +2 -3
  53. package/template-ssr-solid/package.json +1 -1
  54. package/template-ssr-solid/src/index.css +2 -3
  55. package/template-ssr-solid-ts/package.json +3 -1
  56. package/template-ssr-solid-ts/src/index.css +2 -3
  57. package/template-ssr-svelte/package.json +2 -2
  58. package/template-ssr-svelte/src/app.css +2 -3
  59. package/template-ssr-svelte/svelte.config.js +5 -0
  60. package/template-ssr-svelte-ts/package.json +5 -3
  61. package/template-ssr-svelte-ts/src/app.css +2 -3
  62. package/template-ssr-transform/package.json +1 -1
  63. package/template-ssr-vanilla/package.json +1 -1
  64. package/template-ssr-vanilla/src/style.css +2 -3
  65. package/template-ssr-vanilla-ts/package.json +2 -2
  66. package/template-ssr-vanilla-ts/src/style.css +2 -3
  67. package/template-ssr-vue/package.json +1 -1
  68. package/template-ssr-vue/src/style.css +2 -3
  69. package/template-ssr-vue-ts/package.json +4 -2
  70. package/template-ssr-vue-ts/src/style.css +2 -3
package/index.js CHANGED
@@ -559,7 +559,11 @@ function pkgFromUserAgent(userAgent) {
559
559
  * @param {{ isTs: boolean, isDeno: boolean }} options
560
560
  */
561
561
  function setupReactSwc(root, { isTs, isDeno }) {
562
- if (!isDeno) {
562
+ if (isDeno) {
563
+ editFile(path.resolve(root, 'deno.json'), (content) => {
564
+ return content.replace(/deno run -A/g, 'deno run -A --unstable')
565
+ })
566
+ } else {
563
567
  editFile(path.resolve(root, 'package.json'), (content) => {
564
568
  return content.replace(
565
569
  /"@vitejs\/plugin-react": ".+?"/,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vite-extra",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Bjorn Lu",
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -1,4 +1,4 @@
1
- import { defineConfig } from 'npm:vite@^4.0.0'
1
+ import { defineConfig } from 'npm:vite@^4.0.4'
2
2
 
3
3
  import 'npm:lit@^2.5.0'
4
4
 
@@ -7,8 +7,7 @@ export default defineConfig({
7
7
  build: {
8
8
  lib: {
9
9
  entry: 'src/my-element.js',
10
- formats: ['es'],
11
- fileName: 'app'
10
+ formats: ['es']
12
11
  },
13
12
  rollupOptions: {
14
13
  external: /^lit/
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Running
4
4
 
5
- You need to have Deno v1.28.0 or later intalled to run this repo.
5
+ You need to have Deno v1.28.0 or later installed to run this repo.
6
6
 
7
7
  Start a dev server:
8
8
 
@@ -6,7 +6,7 @@
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <title>Vite + Lit</title>
8
8
  <link rel="stylesheet" href="./src/index.css" />
9
- <script type="module" src="/src/my-element.js"></script>
9
+ <script type="module" src="/src/my-element.ts"></script>
10
10
  </head>
11
11
  <body>
12
12
  <my-element>
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -0,0 +1,6 @@
1
+ {
2
+ "compilerOptions": {
3
+ "useDefineForClassFields": false
4
+ },
5
+ "include": ["src/**/*.ts"]
6
+ }
@@ -1,4 +1,4 @@
1
- import { defineConfig } from 'npm:vite@^4.0.0'
1
+ import { defineConfig } from 'npm:vite@^4.0.4'
2
2
 
3
3
  import 'npm:lit@^2.5.0'
4
4
 
@@ -6,9 +6,8 @@ import 'npm:lit@^2.5.0'
6
6
  export default defineConfig({
7
7
  build: {
8
8
  lib: {
9
- entry: 'src/my-element.js',
10
- formats: ['es'],
11
- fileName: 'app'
9
+ entry: 'src/my-element.ts',
10
+ formats: ['es']
12
11
  },
13
12
  rollupOptions: {
14
13
  external: /^lit/
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Running
4
4
 
5
- You need to have Deno v1.28.0 or later intalled to run this repo.
5
+ You need to have Deno v1.28.0 or later installed to run this repo.
6
6
 
7
7
  Start a dev server:
8
8
 
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -1,5 +1,5 @@
1
- import { defineConfig } from 'npm:vite@^4.0.0'
2
- import preact from 'npm:@preact/preset-vite@^2.4.0'
1
+ import { defineConfig } from 'npm:vite@^4.0.4'
2
+ import preact from 'npm:@preact/preset-vite@^2.5.0'
3
3
 
4
4
  import 'npm:preact@^10.11.3'
5
5
  import 'npm:preact@^10.11.3/hooks'
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Running
4
4
 
5
- You need to have Deno v1.28.0 or later intalled to run this repo.
5
+ You need to have Deno v1.28.0 or later installed to run this repo.
6
6
 
7
7
  Start a dev server:
8
8
 
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -1,5 +1,5 @@
1
- import { defineConfig } from 'npm:vite@^4.0.0'
2
- import preact from 'npm:@preact/preset-vite@^2.4.0'
1
+ import { defineConfig } from 'npm:vite@^4.0.4'
2
+ import preact from 'npm:@preact/preset-vite@^2.5.0'
3
3
 
4
4
  import 'npm:preact@^10.11.3'
5
5
  import 'npm:preact@^10.11.3/hooks'
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Running
4
4
 
5
- You need to have Deno v1.28.0 or later intalled to run this repo.
5
+ You need to have Deno v1.28.0 or later installed to run this repo.
6
6
 
7
7
  Start a dev server:
8
8
 
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -1,5 +1,5 @@
1
- import { defineConfig } from 'npm:vite@^4.0.0'
2
- import react from 'npm:@vitejs/plugin-react@^3.0.0'
1
+ import { defineConfig } from 'npm:vite@^4.0.4'
2
+ import react from 'npm:@vitejs/plugin-react@^3.0.1'
3
3
 
4
4
  import 'npm:react@^18.2.0'
5
5
  import 'npm:react-dom@^18.2.0/client'
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Running
4
4
 
5
- You need to have Deno v1.28.0 or later intalled to run this repo.
5
+ You need to have Deno v1.28.0 or later installed to run this repo.
6
6
 
7
7
  Start a dev server:
8
8
 
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -1,5 +1,5 @@
1
- import { defineConfig } from 'npm:vite@^4.0.0'
2
- import react from 'npm:@vitejs/plugin-react@^3.0.0'
1
+ import { defineConfig } from 'npm:vite@^4.0.4'
2
+ import react from 'npm:@vitejs/plugin-react@^3.0.1'
3
3
 
4
4
  import 'npm:react@^18.2.0'
5
5
  import 'npm:react-dom@^18.2.0/client'
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -1,4 +1,4 @@
1
- import { defineConfig } from 'npm:vite@^4.0.0'
1
+ import { defineConfig } from 'npm:vite@^4.0.4'
2
2
  import solid from 'npm:vite-plugin-solid@^2.4.0'
3
3
 
4
4
  import 'npm:solid-js@^1.6.3'
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -1,4 +1,4 @@
1
- import { defineConfig } from 'npm:vite@^4.0.0'
1
+ import { defineConfig } from 'npm:vite@^4.0.4'
2
2
  import solid from 'npm:vite-plugin-solid@^2.4.0'
3
3
 
4
4
  import 'npm:solid-js@^1.6.3'
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Running
4
4
 
5
- You need to have Deno v1.28.0 or later intalled to run this repo.
5
+ You need to have Deno v1.28.0 or later installed to run this repo.
6
6
 
7
7
  Start a dev server:
8
8
 
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -0,0 +1,5 @@
1
+ import { vitePreprocess } from 'npm:@sveltejs/vite-plugin-svelte@^2.0.2'
2
+
3
+ export default {
4
+ preprocess: vitePreprocess()
5
+ }
@@ -1,5 +1,5 @@
1
- import { defineConfig } from 'npm:vite@^4.0.0'
2
- import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^2.0.0'
1
+ import { defineConfig } from 'npm:vite@^4.0.4'
2
+ import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^2.0.2'
3
3
 
4
4
  import 'npm:svelte@^3.54.0'
5
5
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Running
4
4
 
5
- You need to have Deno v1.28.0 or later intalled to run this repo.
5
+ You need to have Deno v1.28.0 or later installed to run this repo.
6
6
 
7
7
  Start a dev server:
8
8
 
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -1,4 +1,4 @@
1
- import { vitePreprocess } from 'npm:@sveltejs/vite-plugin-svelte@^2.0.0'
1
+ import { vitePreprocess } from 'npm:@sveltejs/vite-plugin-svelte@^2.0.2'
2
2
 
3
3
  export default {
4
4
  preprocess: vitePreprocess()
@@ -1,5 +1,5 @@
1
- import { defineConfig } from 'npm:vite@^4.0.0'
2
- import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^2.0.0'
1
+ import { defineConfig } from 'npm:vite@^4.0.4'
2
+ import { svelte } from 'npm:@sveltejs/vite-plugin-svelte@^2.0.2'
3
3
 
4
4
  import 'npm:svelte@^3.54.0'
5
5
 
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Running
4
4
 
5
- You need to have Deno v1.28.0 or later intalled to run this repo.
5
+ You need to have Deno v1.28.0 or later installed to run this repo.
6
6
 
7
7
  Start a dev server:
8
8
 
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -1,4 +1,4 @@
1
- import { defineConfig } from 'npm:vite@^4.0.0'
1
+ import { defineConfig } from 'npm:vite@^4.0.4'
2
2
  import vue from 'npm:@vitejs/plugin-vue@^4.0.0'
3
3
 
4
4
  import 'npm:vue@^3.2.45'
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -1,4 +1,4 @@
1
- import { defineConfig } from 'npm:vite@^4.0.0'
1
+ import { defineConfig } from 'npm:vite@^4.0.4'
2
2
  import vue from 'npm:@vitejs/plugin-vue@^4.0.0'
3
3
 
4
4
  import 'npm:vue@^3.2.45'
@@ -20,6 +20,6 @@
20
20
  "build": "vite build"
21
21
  },
22
22
  "devDependencies": {
23
- "vite": "^4.0.0"
23
+ "vite": "^4.0.4"
24
24
  }
25
25
  }
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -21,6 +21,6 @@
21
21
  },
22
22
  "devDependencies": {
23
23
  "typescript": "^4.9.4",
24
- "vite": "^4.0.0"
24
+ "vite": "^4.0.4"
25
25
  }
26
26
  }
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -18,8 +18,8 @@
18
18
  "sirv": "^2.0.2"
19
19
  },
20
20
  "devDependencies": {
21
- "@preact/preset-vite": "^2.4.0",
21
+ "@preact/preset-vite": "^2.5.0",
22
22
  "cross-env": "^7.0.3",
23
- "vite": "^4.0.0"
23
+ "vite": "^4.0.4"
24
24
  }
25
25
  }
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -18,10 +18,11 @@
18
18
  "sirv": "^2.0.2"
19
19
  },
20
20
  "devDependencies": {
21
- "@preact/preset-vite": "^2.4.0",
21
+ "@preact/preset-vite": "^2.5.0",
22
+ "@types/express": "^4.17.16",
22
23
  "@types/node": "^18.11.12",
23
24
  "cross-env": "^7.0.3",
24
25
  "typescript": "^4.9.4",
25
- "vite": "^4.0.0"
26
+ "vite": "^4.0.4"
26
27
  }
27
28
  }
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -20,8 +20,8 @@
20
20
  "devDependencies": {
21
21
  "@types/react": "^18.0.26",
22
22
  "@types/react-dom": "^18.0.9",
23
- "@vitejs/plugin-react": "^3.0.0",
23
+ "@vitejs/plugin-react": "^3.0.1",
24
24
  "cross-env": "^7.0.3",
25
- "vite": "^4.0.0"
25
+ "vite": "^4.0.4"
26
26
  }
27
27
  }
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -18,11 +18,13 @@
18
18
  "sirv": "^2.0.2"
19
19
  },
20
20
  "devDependencies": {
21
+ "@types/express": "^4.17.16",
22
+ "@types/node": "^18.11.12",
21
23
  "@types/react": "^18.0.26",
22
24
  "@types/react-dom": "^18.0.9",
23
- "@vitejs/plugin-react": "^3.0.0",
25
+ "@vitejs/plugin-react": "^3.0.1",
24
26
  "cross-env": "^7.0.3",
25
27
  "typescript": "^4.9.4",
26
- "vite": "^4.0.0"
28
+ "vite": "^4.0.4"
27
29
  }
28
30
  }
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "devDependencies": {
20
20
  "cross-env": "^7.0.3",
21
- "vite": "^4.0.0",
21
+ "vite": "^4.0.4",
22
22
  "vite-plugin-solid": "^2.5.0"
23
23
  }
24
24
  }
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -17,8 +17,10 @@
17
17
  "solid-js": "^1.6.4"
18
18
  },
19
19
  "devDependencies": {
20
+ "@types/express": "^4.17.16",
21
+ "@types/node": "^18.11.12",
20
22
  "cross-env": "^7.0.3",
21
- "vite": "^4.0.0",
23
+ "vite": "^4.0.4",
22
24
  "vite-plugin-solid": "^2.5.0"
23
25
  }
24
26
  }
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -16,9 +16,9 @@
16
16
  "sirv": "^2.0.2"
17
17
  },
18
18
  "devDependencies": {
19
- "@sveltejs/vite-plugin-svelte": "^2.0.0",
19
+ "@sveltejs/vite-plugin-svelte": "^2.0.2",
20
20
  "cross-env": "^7.0.3",
21
21
  "svelte": "^3.54.0",
22
- "vite": "^4.0.0"
22
+ "vite": "^4.0.4"
23
23
  }
24
24
  }
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -0,0 +1,5 @@
1
+ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
2
+
3
+ export default {
4
+ preprocess: vitePreprocess()
5
+ }
@@ -16,13 +16,15 @@
16
16
  "sirv": "^2.0.2"
17
17
  },
18
18
  "devDependencies": {
19
- "@sveltejs/vite-plugin-svelte": "^2.0.0",
19
+ "@types/express": "^4.17.16",
20
+ "@types/node": "^18.11.12",
21
+ "@sveltejs/vite-plugin-svelte": "^2.0.2",
20
22
  "@tsconfig/svelte": "^3.0.0",
21
23
  "cross-env": "^7.0.3",
22
24
  "svelte": "^3.54.0",
23
- "svelte-check": "^2.10.2",
25
+ "svelte-check": "^3.0.3",
24
26
  "tslib": "^2.4.1",
25
27
  "typescript": "^4.9.4",
26
- "vite": "^4.0.0"
28
+ "vite": "^4.0.4"
27
29
  }
28
30
  }
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -7,6 +7,6 @@
7
7
  "test": "node test"
8
8
  },
9
9
  "devDependencies": {
10
- "vite": "^4.0.0"
10
+ "vite": "^4.0.4"
11
11
  }
12
12
  }
@@ -17,6 +17,6 @@
17
17
  },
18
18
  "devDependencies": {
19
19
  "cross-env": "^7.0.3",
20
- "vite": "^4.0.0"
20
+ "vite": "^4.0.4"
21
21
  }
22
22
  }
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -16,10 +16,10 @@
16
16
  "sirv": "^2.0.2"
17
17
  },
18
18
  "devDependencies": {
19
- "@types/express": "^4.17.14",
19
+ "@types/express": "^4.17.16",
20
20
  "@types/node": "^18.11.12",
21
21
  "cross-env": "^7.0.3",
22
22
  "typescript": "^4.9.4",
23
- "vite": "^4.0.0"
23
+ "vite": "^4.0.4"
24
24
  }
25
25
  }
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -19,6 +19,6 @@
19
19
  "devDependencies": {
20
20
  "@vitejs/plugin-vue": "^4.0.0",
21
21
  "cross-env": "^7.0.3",
22
- "vite": "^4.0.0"
22
+ "vite": "^4.0.4"
23
23
  }
24
24
  }
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;
@@ -17,10 +17,12 @@
17
17
  "vue": "^3.2.45"
18
18
  },
19
19
  "devDependencies": {
20
+ "@types/express": "^4.17.16",
21
+ "@types/node": "^18.11.12",
20
22
  "@vitejs/plugin-vue": "^4.0.0",
21
23
  "cross-env": "^7.0.3",
22
24
  "typescript": "^4.9.4",
23
- "vite": "^4.0.0",
24
- "vue-tsc": "^1.0.12"
25
+ "vite": "^4.0.4",
26
+ "vue-tsc": "^1.0.24"
25
27
  }
26
28
  }
@@ -1,7 +1,6 @@
1
1
  :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
2
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3
+ line-height: 1.5;
5
4
  font-weight: 400;
6
5
 
7
6
  color-scheme: light dark;