mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-22 08:15:53 +00:00
feat: 对齐构建时的目标
This commit is contained in:
3
build.ts
3
build.ts
@@ -11,6 +11,9 @@ rmSync(outdir, { recursive: true, force: true })
|
|||||||
// Default features that match the official CLI build.
|
// Default features that match the official CLI build.
|
||||||
// Additional features can be enabled via FEATURE_<NAME>=1 env vars.
|
// Additional features can be enabled via FEATURE_<NAME>=1 env vars.
|
||||||
const DEFAULT_BUILD_FEATURES = [
|
const DEFAULT_BUILD_FEATURES = [
|
||||||
|
'BUDDY',
|
||||||
|
'TRANSCRIPT_CLASSIFIER',
|
||||||
|
'BRIDGE_MODE',
|
||||||
'AGENT_TRIGGERS_REMOTE',
|
'AGENT_TRIGGERS_REMOTE',
|
||||||
'CHICAGO_MCP',
|
'CHICAGO_MCP',
|
||||||
'VOICE_MODE',
|
'VOICE_MODE',
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "claude-code-best",
|
"name": "claude-code-best",
|
||||||
"version": "1.1.0",
|
"version": "1.2.0",
|
||||||
"description": "Reverse-engineered Anthropic Claude Code CLI — interactive AI coding assistant in the terminal",
|
"description": "Reverse-engineered Anthropic Claude Code CLI — interactive AI coding assistant in the terminal",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"author": "claude-code-best <claude-code-best@proton.me>",
|
"author": "claude-code-best <claude-code-best@proton.me>",
|
||||||
|
|||||||
@@ -201,9 +201,12 @@
|
|||||||
padding: 28px 32px;
|
padding: 28px 32px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
min-height: calc(100vh - 56px);
|
height: calc(100vh - 56px);
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#permission-area { flex-shrink: 0; }
|
||||||
|
|
||||||
.back-link {
|
.back-link {
|
||||||
font-size: 0.85rem;
|
font-size: 0.85rem;
|
||||||
color: var(--text-secondary);
|
color: var(--text-secondary);
|
||||||
@@ -216,7 +219,7 @@
|
|||||||
}
|
}
|
||||||
.back-link:hover { color: var(--accent); text-decoration: none; }
|
.back-link:hover { color: var(--accent); text-decoration: none; }
|
||||||
|
|
||||||
.session-header { margin-bottom: 24px; }
|
.session-header { margin-bottom: 24px; flex-shrink: 0; }
|
||||||
|
|
||||||
.session-detail-title {
|
.session-detail-title {
|
||||||
font-family: var(--font-display);
|
font-family: var(--font-display);
|
||||||
|
|||||||
Reference in New Issue
Block a user