diff options
| author | Fuwn <[email protected]> | 2026-03-01 18:03:40 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-01 18:03:40 -0800 |
| commit | e635c60dd37b93ad933eb2b97f239dffccc4f598 (patch) | |
| tree | b801e840caa2fc5bf613b3b5da1b6f1df61398f2 /package.json | |
| parent | chore(dx): add CI-equivalent local check command (diff) | |
| download | due.moe-e635c60dd37b93ad933eb2b97f239dffccc4f598.tar.xz due.moe-e635c60dd37b93ad933eb2b97f239dffccc4f598.zip | |
chore(dx): add local check with fallback env defaults
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package.json b/package.json index cb9a1faa..f45bf23f 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,9 @@ "preview": "vite preview", "test:unit": "vitest run", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", + "check:local": "bash scripts/check-with-fallback-env.sh", "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", - "check:ci": "pnpm exec sveltekit-graphql generate && pnpm run format:check && pnpm run check && pnpm run lint", + "check:ci": "pnpm exec sveltekit-graphql generate && pnpm run format:check && pnpm run check:local && pnpm run lint", "lint": "biome lint .", "format": "biome format --write .", "format:check": "biome check --linter-enabled=false --assist-enabled=false ." |