claudekit-cli 3.36.0-dev.20 → 3.36.0-dev.21
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/index.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -56177,7 +56177,7 @@ var package_default;
|
|
|
56177
56177
|
var init_package = __esm(() => {
|
|
56178
56178
|
package_default = {
|
|
56179
56179
|
name: "claudekit-cli",
|
|
56180
|
-
version: "3.36.0-dev.
|
|
56180
|
+
version: "3.36.0-dev.21",
|
|
56181
56181
|
description: "CLI tool for bootstrapping and updating ClaudeKit projects",
|
|
56182
56182
|
type: "module",
|
|
56183
56183
|
repository: {
|
|
@@ -57717,6 +57717,7 @@ async function updateCliCommand(options2, deps = getDefaultUpdateCliCommandDeps(
|
|
|
57717
57717
|
const isDevChannelSwitch = (opts.dev || opts.beta) && isBetaVersion(targetVersion) && !isBetaVersion(currentVersion);
|
|
57718
57718
|
if (comparison > 0 && !opts.release && !isDevChannelSwitch) {
|
|
57719
57719
|
outro(`[+] Current version (${currentVersion}) is newer than latest (${targetVersion})`);
|
|
57720
|
+
await promptKitUpdateFn(opts.dev || opts.beta, opts.yes);
|
|
57720
57721
|
return;
|
|
57721
57722
|
}
|
|
57722
57723
|
const isUpgrade = comparison < 0 || isDevChannelSwitch;
|