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.
@@ -351,16 +351,22 @@ class CloudSetupOrchestrator {
351
351
  ${ansis.yellow(i18n.t("cloud-setup:noRecommendations"))}`);
352
352
  return false;
353
353
  }
354
- const { inquirer } = await import('inquirer');
355
- const { confirm } = await inquirer.prompt([
356
- {
357
- type: "confirm",
358
- name: "confirm",
359
- message: i18n.t("cloud-setup:installResources", { count: totalResources }),
360
- default: true
361
- }
362
- ]);
363
- return confirm;
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
@@ -1,4 +1,4 @@
1
- const version = "8.0.9";
1
+ const version = "8.1.0";
2
2
  const homepage = "https://github.com/miounet11/ccjk";
3
3
 
4
4
  export { homepage, version };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ccjk",
3
3
  "type": "module",
4
- "version": "8.0.9",
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": {