claudekit-cli 4.2.3-dev.4 → 4.3.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
|
@@ -63258,7 +63258,7 @@ var package_default;
|
|
|
63258
63258
|
var init_package = __esm(() => {
|
|
63259
63259
|
package_default = {
|
|
63260
63260
|
name: "claudekit-cli",
|
|
63261
|
-
version: "4.
|
|
63261
|
+
version: "4.3.0",
|
|
63262
63262
|
description: "CLI tool for bootstrapping and updating ClaudeKit projects",
|
|
63263
63263
|
type: "module",
|
|
63264
63264
|
repository: {
|
|
@@ -74413,6 +74413,76 @@ var init_ownership_display = __esm(() => {
|
|
|
74413
74413
|
import_picocolors25 = __toESM(require_picocolors(), 1);
|
|
74414
74414
|
});
|
|
74415
74415
|
|
|
74416
|
+
// src/ui/node_modules/picocolors/picocolors.js
|
|
74417
|
+
var require_picocolors2 = __commonJS((exports, module) => {
|
|
74418
|
+
var p = process || {};
|
|
74419
|
+
var argv = p.argv || [];
|
|
74420
|
+
var env2 = p.env || {};
|
|
74421
|
+
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);
|
|
74422
|
+
var formatter = (open6, close, replace3 = open6) => (input) => {
|
|
74423
|
+
let string = "" + input, index = string.indexOf(close, open6.length);
|
|
74424
|
+
return ~index ? open6 + replaceClose(string, close, replace3, index) + close : open6 + string + close;
|
|
74425
|
+
};
|
|
74426
|
+
var replaceClose = (string, close, replace3, index) => {
|
|
74427
|
+
let result = "", cursor = 0;
|
|
74428
|
+
do {
|
|
74429
|
+
result += string.substring(cursor, index) + replace3;
|
|
74430
|
+
cursor = index + close.length;
|
|
74431
|
+
index = string.indexOf(close, cursor);
|
|
74432
|
+
} while (~index);
|
|
74433
|
+
return result + string.substring(cursor);
|
|
74434
|
+
};
|
|
74435
|
+
var createColors = (enabled = isColorSupported) => {
|
|
74436
|
+
let f3 = enabled ? formatter : () => String;
|
|
74437
|
+
return {
|
|
74438
|
+
isColorSupported: enabled,
|
|
74439
|
+
reset: f3("\x1B[0m", "\x1B[0m"),
|
|
74440
|
+
bold: f3("\x1B[1m", "\x1B[22m", "\x1B[22m\x1B[1m"),
|
|
74441
|
+
dim: f3("\x1B[2m", "\x1B[22m", "\x1B[22m\x1B[2m"),
|
|
74442
|
+
italic: f3("\x1B[3m", "\x1B[23m"),
|
|
74443
|
+
underline: f3("\x1B[4m", "\x1B[24m"),
|
|
74444
|
+
inverse: f3("\x1B[7m", "\x1B[27m"),
|
|
74445
|
+
hidden: f3("\x1B[8m", "\x1B[28m"),
|
|
74446
|
+
strikethrough: f3("\x1B[9m", "\x1B[29m"),
|
|
74447
|
+
black: f3("\x1B[30m", "\x1B[39m"),
|
|
74448
|
+
red: f3("\x1B[31m", "\x1B[39m"),
|
|
74449
|
+
green: f3("\x1B[32m", "\x1B[39m"),
|
|
74450
|
+
yellow: f3("\x1B[33m", "\x1B[39m"),
|
|
74451
|
+
blue: f3("\x1B[34m", "\x1B[39m"),
|
|
74452
|
+
magenta: f3("\x1B[35m", "\x1B[39m"),
|
|
74453
|
+
cyan: f3("\x1B[36m", "\x1B[39m"),
|
|
74454
|
+
white: f3("\x1B[37m", "\x1B[39m"),
|
|
74455
|
+
gray: f3("\x1B[90m", "\x1B[39m"),
|
|
74456
|
+
bgBlack: f3("\x1B[40m", "\x1B[49m"),
|
|
74457
|
+
bgRed: f3("\x1B[41m", "\x1B[49m"),
|
|
74458
|
+
bgGreen: f3("\x1B[42m", "\x1B[49m"),
|
|
74459
|
+
bgYellow: f3("\x1B[43m", "\x1B[49m"),
|
|
74460
|
+
bgBlue: f3("\x1B[44m", "\x1B[49m"),
|
|
74461
|
+
bgMagenta: f3("\x1B[45m", "\x1B[49m"),
|
|
74462
|
+
bgCyan: f3("\x1B[46m", "\x1B[49m"),
|
|
74463
|
+
bgWhite: f3("\x1B[47m", "\x1B[49m"),
|
|
74464
|
+
blackBright: f3("\x1B[90m", "\x1B[39m"),
|
|
74465
|
+
redBright: f3("\x1B[91m", "\x1B[39m"),
|
|
74466
|
+
greenBright: f3("\x1B[92m", "\x1B[39m"),
|
|
74467
|
+
yellowBright: f3("\x1B[93m", "\x1B[39m"),
|
|
74468
|
+
blueBright: f3("\x1B[94m", "\x1B[39m"),
|
|
74469
|
+
magentaBright: f3("\x1B[95m", "\x1B[39m"),
|
|
74470
|
+
cyanBright: f3("\x1B[96m", "\x1B[39m"),
|
|
74471
|
+
whiteBright: f3("\x1B[97m", "\x1B[39m"),
|
|
74472
|
+
bgBlackBright: f3("\x1B[100m", "\x1B[49m"),
|
|
74473
|
+
bgRedBright: f3("\x1B[101m", "\x1B[49m"),
|
|
74474
|
+
bgGreenBright: f3("\x1B[102m", "\x1B[49m"),
|
|
74475
|
+
bgYellowBright: f3("\x1B[103m", "\x1B[49m"),
|
|
74476
|
+
bgBlueBright: f3("\x1B[104m", "\x1B[49m"),
|
|
74477
|
+
bgMagentaBright: f3("\x1B[105m", "\x1B[49m"),
|
|
74478
|
+
bgCyanBright: f3("\x1B[106m", "\x1B[49m"),
|
|
74479
|
+
bgWhiteBright: f3("\x1B[107m", "\x1B[49m")
|
|
74480
|
+
};
|
|
74481
|
+
};
|
|
74482
|
+
module.exports = createColors();
|
|
74483
|
+
module.exports.createColors = createColors;
|
|
74484
|
+
});
|
|
74485
|
+
|
|
74416
74486
|
// src/commands/watch/phases/implementation-git-helpers.ts
|
|
74417
74487
|
import { spawn as spawn5 } from "node:child_process";
|
|
74418
74488
|
async function getCurrentBranch2(cwd2) {
|
|
@@ -107990,7 +108060,7 @@ import { basename as basename29, join as join143, resolve as resolve49 } from "n
|
|
|
107990
108060
|
init_logger();
|
|
107991
108061
|
|
|
107992
108062
|
// src/ui/ck-cli-design/tokens.ts
|
|
107993
|
-
var import_picocolors27 = __toESM(
|
|
108063
|
+
var import_picocolors27 = __toESM(require_picocolors2(), 1);
|
|
107994
108064
|
import { homedir as homedir48, platform as platform16 } from "node:os";
|
|
107995
108065
|
import { resolve as resolve48, win32 as win322 } from "node:path";
|
|
107996
108066
|
var PANEL_MIN_WIDTH = 60;
|