cc-linker 0.0.3 → 0.0.4
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/dist/cli.js +5 -2
- package/dist/cli.js.map +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -128686,8 +128686,11 @@ function printSummary(sessionCount, hookInstalled, feishu) {
|
|
|
128686
128686
|
|
|
128687
128687
|
// src/index.ts
|
|
128688
128688
|
init_daemon();
|
|
128689
|
+
import { createRequire } from "module";
|
|
128690
|
+
var require2 = createRequire(import.meta.url);
|
|
128691
|
+
var { version: version2 } = require2("../package.json");
|
|
128689
128692
|
var program2 = new Command;
|
|
128690
|
-
program2.name("cc-linker").description("\
|
|
128693
|
+
program2.name("cc-linker").description("\u624B\u673A\u804A\u5929\u5E94\u7528 \u2194 Claude Code CLI \u6865\u63A5\u5DE5\u5177").version(version2);
|
|
128691
128694
|
async function withSync(fn, skipSync = false) {
|
|
128692
128695
|
const registry2 = new RegistryManager;
|
|
128693
128696
|
if (!skipSync) {
|
|
@@ -128751,5 +128754,5 @@ program2.command("setup").description("\u4E00\u952E\u914D\u7F6E\u5411\u5BFC\uFF0
|
|
|
128751
128754
|
program2.command("init-feishu").description("\u4EA4\u4E92\u5F0F\u914D\u7F6E\u98DE\u4E66\u96C6\u6210\uFF08App ID + App Secret + Owner\uFF09").action(() => initFeishu());
|
|
128752
128755
|
program2.parseAsync(process.argv).catch(handleError);
|
|
128753
128756
|
|
|
128754
|
-
//# debugId=
|
|
128757
|
+
//# debugId=2632630D0B35177964756E2164756E21
|
|
128755
128758
|
//# sourceMappingURL=index.js.map
|