ccjk 8.0.9 → 8.1.0
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/chunks/ccjk-all.mjs +16 -10
- package/dist/chunks/package.mjs +1 -1
- package/package.json +1 -1
package/dist/chunks/ccjk-all.mjs
CHANGED
|
@@ -351,16 +351,22 @@ class CloudSetupOrchestrator {
|
|
|
351
351
|
${ansis.yellow(i18n.t("cloud-setup:noRecommendations"))}`);
|
|
352
352
|
return false;
|
|
353
353
|
}
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
354
|
+
try {
|
|
355
|
+
const inquirerModule = await import('inquirer');
|
|
356
|
+
const inquirer = inquirerModule.default || inquirerModule;
|
|
357
|
+
const { confirm } = await inquirer.prompt([
|
|
358
|
+
{
|
|
359
|
+
type: "confirm",
|
|
360
|
+
name: "confirm",
|
|
361
|
+
message: i18n.t("cloud-setup:installResources", { count: totalResources }),
|
|
362
|
+
default: true
|
|
363
|
+
}
|
|
364
|
+
]);
|
|
365
|
+
return confirm;
|
|
366
|
+
} catch (error) {
|
|
367
|
+
this.logger.error("Failed to prompt user:", error);
|
|
368
|
+
return true;
|
|
369
|
+
}
|
|
364
370
|
}
|
|
365
371
|
/**
|
|
366
372
|
* Download templates in batch
|
package/dist/chunks/package.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccjk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "8.0
|
|
4
|
+
"version": "8.1.0",
|
|
5
5
|
"packageManager": "pnpm@10.17.1",
|
|
6
6
|
"description": "Ultimate AI Development Tool - Code Tool Abstraction Layer with 83% Token Savings - Now with Cloud Sync, Hot-Reload Skills, Multi-Agent Orchestration, and Full Claude Code CLI 2.1+ Compatibility",
|
|
7
7
|
"author": {
|