feat: update dependencies, force node adapter

This commit is contained in:
EETagent 2022-12-14 12:03:56 +01:00
parent 80481722e2
commit fb4ac2aba6
3 changed files with 581 additions and 404 deletions

View file

@ -14,28 +14,28 @@
},
"devDependencies": {
"@playwright/test": "1.25.0",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"@sveltejs/adapter-node": "1.0.0-next.105",
"@sveltejs/kit": "1.0.0-next.587",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.0",
"svelte": "^3.53.1",
"svelte-check": "^2.9.2",
"svelte-preprocess": "^4.10.7",
"prettier": "^2.8.1",
"prettier-plugin-svelte": "^2.9.0",
"prettier-plugin-tailwindcss": "^0.2.1",
"svelte": "^3.55.0",
"svelte-check": "^2.10.2",
"svelte-preprocess": "^5.0.0",
"svelte-windicss-preprocess": "^4.2.8",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"typescript": "^4.9.4",
"vite": "^4.0.1",
"windicss": "^3.5.6"
},
"type": "module",
"dependencies": {
"axios": "^1.2.0",
"axios": "^1.2.1",
"filedrop-svelte": "^0.1.2",
"fuse.js": "^6.6.2",
"isomorphic-dompurify": "^0.24.0",

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,4 @@
import adapter from '@sveltejs/adapter-auto';
import adapter from '@sveltejs/adapter-node';
import preprocess from 'svelte-preprocess';
import { windi } from 'svelte-windicss-preprocess';
@ -8,7 +8,7 @@ const config = {
// for more information about preprocessors
preprocess: [preprocess(), windi({})],
kit: {
adapter: adapter()
adapter: adapter({ out: 'build' })
}
};