@jvittechs/jai1-cli 0.1.82 → 0.1.84

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 CHANGED
@@ -33,7 +33,7 @@ var NetworkError = class extends Jai1Error {
33
33
  // package.json
34
34
  var package_default = {
35
35
  name: "@jvittechs/jai1-cli",
36
- version: "0.1.82",
36
+ version: "0.1.84",
37
37
  description: "A unified CLI tool for JV-IT TECHS developers to manage Jai1 Framework. Please contact TeamAI for usage instructions.",
38
38
  type: "module",
39
39
  bin: {
@@ -7539,7 +7539,8 @@ function createKitCreateCommand() {
7539
7539
  const hookExecutor = new HookExecutor(targetDir, variables);
7540
7540
  await hookExecutor.run(kit.config.hooks.postInit);
7541
7541
  }
7542
- if (!options.skipIde) {
7542
+ const shouldPromptIdeSync = kit.config.ide?.promptSync !== false;
7543
+ if (!options.skipIde && shouldPromptIdeSync) {
7543
7544
  const ideChoices = [
7544
7545
  { name: "Cursor", value: "cursor" },
7545
7546
  { name: "Windsurf", value: "windsurf" },
@@ -7574,7 +7575,8 @@ function createKitCreateCommand() {
7574
7575
  console.log(`\u{1F4C1} Location: ${targetDir}`);
7575
7576
  console.log("\n\u{1F4A1} Next steps:");
7576
7577
  console.log(` cd ${targetDir}`);
7577
- console.log(" jai1 apply # Add more framework components");
7578
+ console.log(" jai1 apply # Install framework components");
7579
+ console.log(" jai1 ide sync <ides> # Sync to your IDE(s)");
7578
7580
  });
7579
7581
  }
7580
7582
  async function applyVariableSubstitution(dir, variables) {