@tencent-ai/codebuddy-code 2.106.0 → 2.106.1-dev.4c12da5.202606131025

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/node/index.js DELETED
@@ -1,30 +0,0 @@
1
- /**
2
- * TUI mode entry point — full module set.
3
- *
4
- * Re-exports all shared modules from index-shared.ts, then adds TUI-only modules.
5
- * The shared file is the DEFAULT place to add new modules.
6
- * Only add exports here if the module has hard TUI dependencies
7
- * (e.g., imports from ./ui, ink, react, TUI panels).
8
- *
9
- * See also: index-headless.ts (headless/SDK entry point)
10
- */
11
- import './process';
12
- export * from './index-shared';
13
- // ── TUI-only modules ─────────────────────────────────────────────────
14
- // These modules are excluded from headless builds because they depend on
15
- // TUI rendering (ink/react), heavy optional deps, or interactive-only features.
16
- export * from './doctor'; // CLI diagnostics wizard
17
- export * from './install'; // CLI install / shell-setup
18
- export * from './navigation'; // TUI page routing
19
- export * from './remote-control'; // Remote control via WeChat etc.
20
- export * from './remote-gateway'; // Remote gateway (local + cloud)
21
- export * from './resume'; // ResumeMiddleware (imports TUI panel)
22
- export * from './sandbox'; // e2b sandbox (heavy deps ~1250 modules)
23
- export * from './shortcut'; // TUI keyboard shortcuts
24
- export * from './tips'; // TUI tips / user state tracking
25
- export * from './worktree'; // Git worktree management
26
- export * from './ui'; // TUI UI components
27
- export * from './feedback-survey'; // TUI feedback survey
28
- export * from './undo-redo'; // TUI undo/redo
29
- export * from './prompt-suggestion'; // TUI prompt suggestions
30
- //# sourceMappingURL=index.js.map