Skip to content

Commit

Permalink
chore: remove svelte-preprocess (#7159)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann authored Feb 17, 2024
1 parent fab19a8 commit 3915867
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
15 changes: 7 additions & 8 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"@floating-ui/dom": "^1.5.1",
"@socket.io/component-emitter": "^3.1.0",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.0.6",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@sveltejs/kit": "^2.5.0",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/svelte": "^4.0.3",
"@types/dom-to-image": "^2.6.4",
Expand All @@ -49,9 +49,8 @@
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-svelte": "^3.1.2",
"rollup-plugin-visualizer": "^5.12.0",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
"svelte-preprocess": "^5.0.3",
"svelte": "^4.2.11",
"svelte-check": "^3.6.4",
"tailwindcss": "^3.2.7",
"tslib": "^2.5.0",
"typescript": "^5.3.3",
Expand Down
4 changes: 2 additions & 2 deletions web/svelte.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import adapter from '@sveltejs/adapter-static';
import preprocess from 'svelte-preprocess';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';

/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: preprocess(),
preprocess: vitePreprocess(),
onwarn: (warning, handler) => {
if (warning.code.includes('a11y')) {
return;
Expand Down

0 comments on commit 3915867

Please sign in to comment.