chore(deps): update frontend dependencies

This commit is contained in:
Job
2025-06-03 17:23:09 +02:00
parent 8b3c78cb84
commit d852e42f03
3 changed files with 1279 additions and 1221 deletions

@@ -10,20 +10,20 @@
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@tsconfig/svelte": "^5.0.2",
"autoprefixer": "^10.4.17",
"daisyui": "^4.6.1",
"postcss": "^8.4.33",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"tailwindcss": "^3.4.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^5.0.8"
"@sveltejs/vite-plugin-svelte": "^5.1.0",
"@tsconfig/svelte": "^5.0.4",
"autoprefixer": "^10.4.21",
"daisyui": "^4.12.24",
"postcss": "^8.5.4",
"svelte": "^5.33.14",
"svelte-check": "^4.2.1",
"tailwindcss": "^3.4.17",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"vite": "^6.3.5"
},
"dependencies": {
"highlight.js": "^11.9.0",
"highlight.js": "^11.11.1",
"svelte-spa-router": "^4.0.1"
}
}

File diff suppressed because it is too large Load Diff

@@ -1,9 +1,8 @@
import './app.css'
import 'highlight.js/styles/github-dark.min.css';
import { mount } from 'svelte';
import App from './App.svelte'
const app = new App({
target: document.getElementById('app'),
})
const app = mount(App, { target: document.getElementById("app") });
export default app