From 4e750966a8db24c0ebfaadd3aca0fbc266b5a35b Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Thu, 23 Apr 2026 12:14:23 +0000 Subject: [PATCH] feat: rename bin command to csc --- CHANGELOG.md | 6 ++++++ package.json | 6 ++---- scripts/defines.ts | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 233e7acb3..93576b59f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [4.0.11] - 2026-04-23 + +### 变更 + +- **Bin**: bin 命令统一为 `csc`,移除 `ccb`、`ccb-bun`、`claude-code-best` + ## [4.0.10] - 2026-04-23 ### 修复 diff --git a/package.json b/package.json index b25c450c1..1fb4a57a7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@costrict/csc", - "version": "4.0.10", + "version": "4.0.11", "description": "costrict", "type": "module", "author": "claude-code-best ", @@ -25,9 +25,7 @@ "bun": ">=1.2.0" }, "bin": { - "ccb": "dist/cli-node.js", - "ccb-bun": "dist/cli-bun.js", - "claude-code-best": "dist/cli-node.js" + "csc": "dist/cli-node.js" }, "workspaces": [ "packages/*", diff --git a/scripts/defines.ts b/scripts/defines.ts index 2530eed60..19f494f93 100644 --- a/scripts/defines.ts +++ b/scripts/defines.ts @@ -7,7 +7,7 @@ */ export function getMacroDefines(): Record { return { - "MACRO.VERSION": JSON.stringify("4.0.10"), + "MACRO.VERSION": JSON.stringify("4.0.11"), "MACRO.BUILD_TIME": JSON.stringify(new Date().toISOString()), "MACRO.FEEDBACK_CHANNEL": JSON.stringify(""), "MACRO.ISSUES_EXPLAINER": JSON.stringify(""),