claudekit-cli 3.15.0 → 3.15.1

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -36503,7 +36503,7 @@ var import_picocolors19 = __toESM(require_picocolors(), 1);
36503
36503
  // package.json
36504
36504
  var package_default = {
36505
36505
  name: "claudekit-cli",
36506
- version: "3.15.0",
36506
+ version: "3.15.1",
36507
36507
  description: "CLI tool for bootstrapping and updating ClaudeKit projects",
36508
36508
  type: "module",
36509
36509
  repository: {
@@ -36632,21 +36632,21 @@ async function displayKitUpdateReminder() {
36632
36632
  lines.push("");
36633
36633
  lines.push("To update your ClaudeKit content (skills, commands, workflows):");
36634
36634
  if (hasLocal && localVersion) {
36635
- lines.push(` ${import_picocolors19.default.cyan(pad(cmdLocal))} Update local project (v${localVersion})`);
36635
+ lines.push(` ${import_picocolors19.default.cyan(pad(cmdLocal))} Update local project (${localVersion})`);
36636
36636
  const localCheck = versionCheckResults.get(localVersion);
36637
36637
  if (localCheck?.updateAvailable) {
36638
36638
  const indent = " ".repeat(maxCmdLen + 4);
36639
- lines.push(`${indent}${import_picocolors19.default.green(`→ v${localCheck.latestVersion} available!`)}`);
36639
+ lines.push(`${indent}${import_picocolors19.default.green(`→ ${localCheck.latestVersion} available!`)}`);
36640
36640
  }
36641
36641
  } else {
36642
36642
  lines.push(` ${import_picocolors19.default.cyan(pad(cmdLocal))} Initialize in current project`);
36643
36643
  }
36644
36644
  if (hasGlobal && globalVersion) {
36645
- lines.push(` ${import_picocolors19.default.cyan(pad(cmdGlobal))} Update global ~/.claude (v${globalVersion})`);
36645
+ lines.push(` ${import_picocolors19.default.cyan(pad(cmdGlobal))} Update global ~/.claude (${globalVersion})`);
36646
36646
  const globalCheck = versionCheckResults.get(globalVersion);
36647
36647
  if (globalCheck?.updateAvailable) {
36648
36648
  const indent = " ".repeat(maxCmdLen + 4);
36649
- lines.push(`${indent}${import_picocolors19.default.green(`→ v${globalCheck.latestVersion} available!`)}`);
36649
+ lines.push(`${indent}${import_picocolors19.default.green(`→ ${globalCheck.latestVersion} available!`)}`);
36650
36650
  }
36651
36651
  } else {
36652
36652
  lines.push(` ${import_picocolors19.default.cyan(pad(cmdGlobal))} Initialize global ~/.claude`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudekit-cli",
3
- "version": "3.15.0",
3
+ "version": "3.15.1",
4
4
  "description": "CLI tool for bootstrapping and updating ClaudeKit projects",
5
5
  "type": "module",
6
6
  "repository": {