Skip to content

Commit

Permalink
CI fix >:(
Browse files Browse the repository at this point in the history
  • Loading branch information
lamemakes committed Feb 27, 2024
1 parent 7f9af67 commit e32e7f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
7 changes: 3 additions & 4 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"build": "npm run wasm && vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check": "npm run wasm && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check . && eslint .",
"format": "prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
Expand Down Expand Up @@ -57,12 +57,11 @@
"vite": "^5.1.4",
"vite-plugin-top-level-await": "^1.4.1",
"vite-plugin-wasm": "^3.3.0",
"vite-plugin-wasm-pack": "^0.1.12",
"vitest": "^1.0.4"
"vitest": "^1.0.4",
"client-wasm": "^0.1.0"
},
"type": "module",
"dependencies": {
"client-wasm": "^0.1.0",
"colord": "^2.9.3",
"file-saver": "^2.0.5",
"highlight.js": "^11.9.0",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/routes/settings/sites/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import { hostRankingsStore } from '$lib/stores';
import { flip } from 'svelte/animate';
import { derived } from 'svelte/store';
import init, {Optic} from 'client-wasm';
import init, { Optic } from 'client-wasm';
import { onMount } from 'svelte';
onMount(async () => {
Expand Down
2 changes: 0 additions & 2 deletions frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@ import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
import Icons from 'unplugin-icons/vite';
import wasm from 'vite-plugin-wasm';
import wasmPack from 'vite-plugin-wasm-pack';
import topLevelAwait from 'vite-plugin-top-level-await';

export default defineConfig({
plugins: [
wasmPack("../crates/client-wasm"),
wasm(),
topLevelAwait(),
sveltekit(),
Expand Down

0 comments on commit e32e7f4

Please sign in to comment.