claudekit-cli 4.1.1-dev.4 → 4.2.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/cli-manifest.json +2 -2
- package/dist/index.js +72 -2
- package/package.json +1 -1
package/cli-manifest.json
CHANGED
package/dist/index.js
CHANGED
|
@@ -62890,7 +62890,7 @@ var package_default;
|
|
|
62890
62890
|
var init_package = __esm(() => {
|
|
62891
62891
|
package_default = {
|
|
62892
62892
|
name: "claudekit-cli",
|
|
62893
|
-
version: "4.
|
|
62893
|
+
version: "4.2.0",
|
|
62894
62894
|
description: "CLI tool for bootstrapping and updating ClaudeKit projects",
|
|
62895
62895
|
type: "module",
|
|
62896
62896
|
repository: {
|
|
@@ -74006,6 +74006,76 @@ var init_ownership_display = __esm(() => {
|
|
|
74006
74006
|
import_picocolors25 = __toESM(require_picocolors(), 1);
|
|
74007
74007
|
});
|
|
74008
74008
|
|
|
74009
|
+
// src/ui/node_modules/picocolors/picocolors.js
|
|
74010
|
+
var require_picocolors2 = __commonJS((exports, module) => {
|
|
74011
|
+
var p = process || {};
|
|
74012
|
+
var argv = p.argv || [];
|
|
74013
|
+
var env2 = p.env || {};
|
|
74014
|
+
var isColorSupported = !(!!env2.NO_COLOR || argv.includes("--no-color")) && (!!env2.FORCE_COLOR || argv.includes("--color") || p.platform === "win32" || (p.stdout || {}).isTTY && env2.TERM !== "dumb" || !!env2.CI);
|
|
74015
|
+
var formatter = (open6, close, replace3 = open6) => (input) => {
|
|
74016
|
+
let string = "" + input, index = string.indexOf(close, open6.length);
|
|
74017
|
+
return ~index ? open6 + replaceClose(string, close, replace3, index) + close : open6 + string + close;
|
|
74018
|
+
};
|
|
74019
|
+
var replaceClose = (string, close, replace3, index) => {
|
|
74020
|
+
let result = "", cursor = 0;
|
|
74021
|
+
do {
|
|
74022
|
+
result += string.substring(cursor, index) + replace3;
|
|
74023
|
+
cursor = index + close.length;
|
|
74024
|
+
index = string.indexOf(close, cursor);
|
|
74025
|
+
} while (~index);
|
|
74026
|
+
return result + string.substring(cursor);
|
|
74027
|
+
};
|
|
74028
|
+
var createColors = (enabled = isColorSupported) => {
|
|
74029
|
+
let f3 = enabled ? formatter : () => String;
|
|
74030
|
+
return {
|
|
74031
|
+
isColorSupported: enabled,
|
|
74032
|
+
reset: f3("\x1B[0m", "\x1B[0m"),
|
|
74033
|
+
bold: f3("\x1B[1m", "\x1B[22m", "\x1B[22m\x1B[1m"),
|
|
74034
|
+
dim: f3("\x1B[2m", "\x1B[22m", "\x1B[22m\x1B[2m"),
|
|
74035
|
+
italic: f3("\x1B[3m", "\x1B[23m"),
|
|
74036
|
+
underline: f3("\x1B[4m", "\x1B[24m"),
|
|
74037
|
+
inverse: f3("\x1B[7m", "\x1B[27m"),
|
|
74038
|
+
hidden: f3("\x1B[8m", "\x1B[28m"),
|
|
74039
|
+
strikethrough: f3("\x1B[9m", "\x1B[29m"),
|
|
74040
|
+
black: f3("\x1B[30m", "\x1B[39m"),
|
|
74041
|
+
red: f3("\x1B[31m", "\x1B[39m"),
|
|
74042
|
+
green: f3("\x1B[32m", "\x1B[39m"),
|
|
74043
|
+
yellow: f3("\x1B[33m", "\x1B[39m"),
|
|
74044
|
+
blue: f3("\x1B[34m", "\x1B[39m"),
|
|
74045
|
+
magenta: f3("\x1B[35m", "\x1B[39m"),
|
|
74046
|
+
cyan: f3("\x1B[36m", "\x1B[39m"),
|
|
74047
|
+
white: f3("\x1B[37m", "\x1B[39m"),
|
|
74048
|
+
gray: f3("\x1B[90m", "\x1B[39m"),
|
|
74049
|
+
bgBlack: f3("\x1B[40m", "\x1B[49m"),
|
|
74050
|
+
bgRed: f3("\x1B[41m", "\x1B[49m"),
|
|
74051
|
+
bgGreen: f3("\x1B[42m", "\x1B[49m"),
|
|
74052
|
+
bgYellow: f3("\x1B[43m", "\x1B[49m"),
|
|
74053
|
+
bgBlue: f3("\x1B[44m", "\x1B[49m"),
|
|
74054
|
+
bgMagenta: f3("\x1B[45m", "\x1B[49m"),
|
|
74055
|
+
bgCyan: f3("\x1B[46m", "\x1B[49m"),
|
|
74056
|
+
bgWhite: f3("\x1B[47m", "\x1B[49m"),
|
|
74057
|
+
blackBright: f3("\x1B[90m", "\x1B[39m"),
|
|
74058
|
+
redBright: f3("\x1B[91m", "\x1B[39m"),
|
|
74059
|
+
greenBright: f3("\x1B[92m", "\x1B[39m"),
|
|
74060
|
+
yellowBright: f3("\x1B[93m", "\x1B[39m"),
|
|
74061
|
+
blueBright: f3("\x1B[94m", "\x1B[39m"),
|
|
74062
|
+
magentaBright: f3("\x1B[95m", "\x1B[39m"),
|
|
74063
|
+
cyanBright: f3("\x1B[96m", "\x1B[39m"),
|
|
74064
|
+
whiteBright: f3("\x1B[97m", "\x1B[39m"),
|
|
74065
|
+
bgBlackBright: f3("\x1B[100m", "\x1B[49m"),
|
|
74066
|
+
bgRedBright: f3("\x1B[101m", "\x1B[49m"),
|
|
74067
|
+
bgGreenBright: f3("\x1B[102m", "\x1B[49m"),
|
|
74068
|
+
bgYellowBright: f3("\x1B[103m", "\x1B[49m"),
|
|
74069
|
+
bgBlueBright: f3("\x1B[104m", "\x1B[49m"),
|
|
74070
|
+
bgMagentaBright: f3("\x1B[105m", "\x1B[49m"),
|
|
74071
|
+
bgCyanBright: f3("\x1B[106m", "\x1B[49m"),
|
|
74072
|
+
bgWhiteBright: f3("\x1B[107m", "\x1B[49m")
|
|
74073
|
+
};
|
|
74074
|
+
};
|
|
74075
|
+
module.exports = createColors();
|
|
74076
|
+
module.exports.createColors = createColors;
|
|
74077
|
+
});
|
|
74078
|
+
|
|
74009
74079
|
// src/commands/watch/phases/implementation-git-helpers.ts
|
|
74010
74080
|
import { spawn as spawn5 } from "node:child_process";
|
|
74011
74081
|
async function getCurrentBranch2(cwd2) {
|
|
@@ -107442,7 +107512,7 @@ import { basename as basename27, join as join142, resolve as resolve46 } from "n
|
|
|
107442
107512
|
init_logger();
|
|
107443
107513
|
|
|
107444
107514
|
// src/ui/ck-cli-design/tokens.ts
|
|
107445
|
-
var import_picocolors27 = __toESM(
|
|
107515
|
+
var import_picocolors27 = __toESM(require_picocolors2(), 1);
|
|
107446
107516
|
import { homedir as homedir47, platform as platform16 } from "node:os";
|
|
107447
107517
|
import { resolve as resolve45, win32 as win322 } from "node:path";
|
|
107448
107518
|
var PANEL_MIN_WIDTH = 60;
|