From b1ab2c02b842530ed63b4c8879b1c0e276ab45a8 Mon Sep 17 00:00:00 2001 From: Tobias Klemp Date: Sun, 7 Dec 2025 16:50:54 +0100 Subject: [PATCH] fix: new bun version and script to use node_modules --- .gitea/workflows/ci.yml | 2 ++ package.json | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index abce223..799e844 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -15,6 +15,8 @@ jobs: - name: Install bun uses: oven-sh/setup-bun@v2 + with: + bun-version: 1.3.4 - name: Install dependencies run: bun ci diff --git a/package.json b/package.json index 47b9ec4..f554240 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,8 @@ "build": "./node_modules/vite/bin/vite.js build", "preview": "vite preview", "prepare": "svelte-kit sync || echo ''", - "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", - "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", + "check": "./node_modules/@sveltejs/kit/svelte-kit.js sync && svelte-check --tsconfig ./tsconfig.json", + "check:watch": "./node_modules/@sveltejs/kit/svelte-kit.js sync && svelte-check --tsconfig ./tsconfig.json --watch", "format": "prettier --write .", "format:check": "prettier --check", "lint:check": "oxlint ."