⬆️ update dependencies to latest

This commit is contained in:
Alexandre Mouton-Brady
2022-07-14 11:56:12 +02:00
parent 492c5a21b0
commit ed0772c518
41 changed files with 5825 additions and 5552 deletions
+6 -6
View File
@@ -14,14 +14,14 @@
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"jsdom": "^19.0.0",
"jsdom": "^20.0.0",
"solid-testing-library": "^0.3.0",
"typescript": "^4.6.4",
"vite": "^2.9.9",
"vite-plugin-solid": "^2.2.6",
"vitest": "^0.12.7"
"typescript": "^4.7.4",
"vite": "^3.0.0",
"vite-plugin-solid": "^2.3.0",
"vitest": "^0.18.0"
},
"dependencies": {
"solid-js": "^1.4.2"
"solid-js": "^1.4.7"
}
}
+455 -404
View File
File diff suppressed because it is too large Load Diff
+4 -2
View File
@@ -6,6 +6,9 @@ import solidPlugin from 'vite-plugin-solid';
export default defineConfig({
plugins: [solidPlugin()],
server: {
port: 3000,
},
test: {
environment: 'jsdom',
globals: true,
@@ -25,9 +28,8 @@ export default defineConfig({
},
build: {
target: 'esnext',
polyfillDynamicImport: false,
},
resolve: {
conditions: ['development', 'browser'],
}
},
});