fix issue

This commit is contained in:
Moritz Jung 2026-06-23 19:17:22 +02:00
parent c522ff1301
commit 84a82f521a
8 changed files with 124 additions and 47 deletions

View file

@ -6,9 +6,9 @@
"scripts": {
"dev": "vite build --watch --mode development",
"build": "bun run tsc && vite build --mode production",
"typecheck": "tsc -noEmit -skipLibCheck",
"test": "bun test",
"test:log": "LOG_TESTS=true bun test",
"typecheck": "tsc -p tsconfig.json -noEmit -skipLibCheck && tsc -p tests/tsconfig.json -noEmit -skipLibCheck",
"test": "bun test --preload ./tests/setup.ts",
"test:log": "LOG_TESTS=true bun test --preload ./tests/setup.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --max-warnings=0 --no-warn-ignored packages/obsidian/src/**",