Merge branch 'workstream-n-completion'

Resolve conflict: use --compile for both CLI binaries

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
RevIQ
2026-01-09 17:21:12 +08:00
8 changed files with 148 additions and 12 deletions

View File

@@ -4,10 +4,11 @@
"private": true,
"type": "module",
"bin": {
"reviq": "./dist/reviq"
"reviq": "./dist/reviq",
"__reviq_bash_complete": "./dist/bash-complete"
},
"scripts": {
"build": "bun build src/bin/reviq.ts --compile --outfile dist/reviq",
"build": "bun build src/bin/reviq.ts --compile --outfile dist/reviq && bun build src/bin/bash-complete.ts --compile --outfile dist/bash-complete",
"cli": "bun run src/bin/reviq.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint . --cache",
@@ -15,6 +16,7 @@
},
"dependencies": {
"@stricli/core": "^1.2.5",
"@stricli/auto-complete": "^1.0.0",
"@reviq/db": "workspace:*",
"@noble/hashes": "^2.0.1"
},