diff options
| author | Fuwn <[email protected]> | 2026-02-03 19:56:15 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-03 19:56:15 -0800 |
| commit | 0dc7d010110038e50cf18c686f6de6dbf4e0cfea (patch) | |
| tree | 78d5c6518f5836d13ff912808fc66f2f36cf0b05 /package.json | |
| parent | feat(iku): Add comment detection with --allow-comments flag (diff) | |
| download | archived-imemio-0dc7d010110038e50cf18c686f6de6dbf4e0cfea.tar.xz archived-imemio-0dc7d010110038e50cf18c686f6de6dbf4e0cfea.zip | |
feat(iku): Support comment-aware whitespace checking
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/package.json b/package.json index d1cb03c..01e542c 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,11 @@ "format": "biome format --write .", "check": "biome check --write .", "test": "turbo test", - "iku": "pnpm --filter @imemio/iku check" + "iku": "pnpm run iku:sdk && pnpm run iku:mcp && pnpm run iku:iku && pnpm run iku:web", + "iku:sdk": "pnpm --filter @imemio/iku exec node --import tsx ./src/cli.ts ../../packages/sdk", + "iku:mcp": "pnpm --filter @imemio/iku exec node --import tsx ./src/cli.ts ../../packages/mcp", + "iku:iku": "pnpm --filter @imemio/iku exec node --import tsx ./src/cli.ts ../../packages/iku", + "iku:web": "pnpm --filter @imemio/iku exec node --import tsx ./src/cli.ts ../../packages/web --allow-comments" }, "devDependencies": { "@biomejs/biome": "^2.3.13", |