chore(package): add svelte-kit sync to scripts (#25)

This commit is contained in:
2025-10-17 13:38:44 +02:00
committed by GitHub
parent a21fbffc96
commit d8901ec8e0

View File

@@ -5,9 +5,9 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"prepare": "svelte-kit sync", "prepare": "svelte-kit sync",
"dev": "vite dev", "dev": "svelte-kit sync && vite dev",
"build": "vite build", "build": "svelte-kit sync && vite build",
"preview": "vite preview", "preview": "svelte-kit sync && vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch" "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
}, },