diff --git a/package.json b/package.json index 3c00a84..59af678 100644 --- a/package.json +++ b/package.json @@ -6,9 +6,6 @@ "dev": "vite dev", "build": "svelte-kit sync && vite build", "preview": "vite preview", - "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", - "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", - "test": "vitest", "lint": "prettier --check . && eslint .", "format": "prettier --write ." }, @@ -37,9 +34,7 @@ "tailwindcss": "^3.4.16", "tslib": "^2.8.1", "typescript": "^5.7.2", - "vite": "^6.0.3", - "vite-plugin-tailwind-purgecss": "^0.3.5", - "vitest": "^2.1.8" + "vite": "^6.0.3" }, "type": "module", "dependencies": { diff --git a/vite.config.ts b/vite.config.ts index a93026d..37b6a84 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,9 +1,8 @@ import { sveltekit } from '@sveltejs/kit/vite'; import { defineConfig } from 'vitest/config'; -import { purgeCss } from 'vite-plugin-tailwind-purgecss'; export default defineConfig({ - plugins: [sveltekit(), purgeCss()], + plugins: [sveltekit()], test: { include: ['src/**/*.{test,spec}.{js,ts}'] }