build(web-client): update npm dependencies

This commit is contained in:
Benoît CORTIER
2023-11-04 02:26:46 -04:00
committed by Benoît Cortier
parent ab16cce949
commit dff3f307eb
4 changed files with 1410 additions and 7570 deletions
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -38,15 +38,15 @@
"rxjs": "^6.6.7",
"svelte": "^3.44.0",
"svelte-check": "^2.7.1",
"@sveltejs/adapter-auto": "next",
"@sveltejs/adapter-static": "^1.0.0-next.48",
"@sveltejs/kit": "next",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-static": "^2.0.0",
"@sveltejs/kit": "^1.27.0",
"svelte-preprocess": "^4.10.6",
"tslib": "^2.3.1",
"typescript": "^4.7.4",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"vite": "^3.2.7",
"vite": "^4.0.0",
"vite-plugin-top-level-await": "^1.2.2",
"vite-plugin-wasm": "^3.1.0"
},
+1 -1
View File
@@ -4,7 +4,7 @@ import wasm from 'vite-plugin-wasm';
import topLevelAwait from 'vite-plugin-top-level-await';
const config: UserConfig = {
mode: process.env.MODE || 'development',
mode: 'process.env.MODE' || 'development',
plugins: [sveltekit(), wasm(), topLevelAwait()],
};