diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index b8bed4073..42bfc42af 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -36,10 +36,6 @@ jobs: - name: Install dependencies run: bun install --frozen-lockfile - - - name: Build - run: bun run build:vite - - name: Type check run: bun run typecheck diff --git a/package.json b/package.json index c993761ad..5a49ec135 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "claude-code-best", - "version": "1.9.1", + "version": "1.9.2", "description": "Reverse-engineered Anthropic Claude Code CLI — interactive AI coding assistant in the terminal", "type": "module", "author": "claude-code-best ", @@ -47,7 +47,7 @@ "build:bun": "bun run build.ts", "dev": "bun run scripts/dev.ts", "dev:inspect": "bun run scripts/dev-debug.ts", - "prepublishOnly": "bun run build", + "prepublishOnly": "bun run build:vite", "lint": "biome lint src/", "lint:fix": "biome lint --fix src/", "format": "biome format --write src/",