claudekit-cli 4.1.0-dev.1 → 4.1.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.
- 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.1.
|
|
62893
|
+
version: "4.1.1",
|
|
62894
62894
|
description: "CLI tool for bootstrapping and updating ClaudeKit projects",
|
|
62895
62895
|
type: "module",
|
|
62896
62896
|
repository: {
|
|
@@ -73995,6 +73995,76 @@ var init_ownership_display = __esm(() => {
|
|
|
73995
73995
|
import_picocolors25 = __toESM(require_picocolors(), 1);
|
|
73996
73996
|
});
|
|
73997
73997
|
|
|
73998
|
+
// src/ui/node_modules/picocolors/picocolors.js
|
|
73999
|
+
var require_picocolors2 = __commonJS((exports, module) => {
|
|
74000
|
+
var p = process || {};
|
|
74001
|
+
var argv = p.argv || [];
|
|
74002
|
+
var env2 = p.env || {};
|
|
74003
|
+
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);
|
|
74004
|
+
var formatter = (open6, close, replace3 = open6) => (input) => {
|
|
74005
|
+
let string = "" + input, index = string.indexOf(close, open6.length);
|
|
74006
|
+
return ~index ? open6 + replaceClose(string, close, replace3, index) + close : open6 + string + close;
|
|
74007
|
+
};
|
|
74008
|
+
var replaceClose = (string, close, replace3, index) => {
|
|
74009
|
+
let result = "", cursor = 0;
|
|
74010
|
+
do {
|
|
74011
|
+
result += string.substring(cursor, index) + replace3;
|
|
74012
|
+
cursor = index + close.length;
|
|
74013
|
+
index = string.indexOf(close, cursor);
|
|
74014
|
+
} while (~index);
|
|
74015
|
+
return result + string.substring(cursor);
|
|
74016
|
+
};
|
|
74017
|
+
var createColors = (enabled = isColorSupported) => {
|
|
74018
|
+
let f3 = enabled ? formatter : () => String;
|
|
74019
|
+
return {
|
|
74020
|
+
isColorSupported: enabled,
|
|
74021
|
+
reset: f3("\x1B[0m", "\x1B[0m"),
|
|
74022
|
+
bold: f3("\x1B[1m", "\x1B[22m", "\x1B[22m\x1B[1m"),
|
|
74023
|
+
dim: f3("\x1B[2m", "\x1B[22m", "\x1B[22m\x1B[2m"),
|
|
74024
|
+
italic: f3("\x1B[3m", "\x1B[23m"),
|
|
74025
|
+
underline: f3("\x1B[4m", "\x1B[24m"),
|
|
74026
|
+
inverse: f3("\x1B[7m", "\x1B[27m"),
|
|
74027
|
+
hidden: f3("\x1B[8m", "\x1B[28m"),
|
|
74028
|
+
strikethrough: f3("\x1B[9m", "\x1B[29m"),
|
|
74029
|
+
black: f3("\x1B[30m", "\x1B[39m"),
|
|
74030
|
+
red: f3("\x1B[31m", "\x1B[39m"),
|
|
74031
|
+
green: f3("\x1B[32m", "\x1B[39m"),
|
|
74032
|
+
yellow: f3("\x1B[33m", "\x1B[39m"),
|
|
74033
|
+
blue: f3("\x1B[34m", "\x1B[39m"),
|
|
74034
|
+
magenta: f3("\x1B[35m", "\x1B[39m"),
|
|
74035
|
+
cyan: f3("\x1B[36m", "\x1B[39m"),
|
|
74036
|
+
white: f3("\x1B[37m", "\x1B[39m"),
|
|
74037
|
+
gray: f3("\x1B[90m", "\x1B[39m"),
|
|
74038
|
+
bgBlack: f3("\x1B[40m", "\x1B[49m"),
|
|
74039
|
+
bgRed: f3("\x1B[41m", "\x1B[49m"),
|
|
74040
|
+
bgGreen: f3("\x1B[42m", "\x1B[49m"),
|
|
74041
|
+
bgYellow: f3("\x1B[43m", "\x1B[49m"),
|
|
74042
|
+
bgBlue: f3("\x1B[44m", "\x1B[49m"),
|
|
74043
|
+
bgMagenta: f3("\x1B[45m", "\x1B[49m"),
|
|
74044
|
+
bgCyan: f3("\x1B[46m", "\x1B[49m"),
|
|
74045
|
+
bgWhite: f3("\x1B[47m", "\x1B[49m"),
|
|
74046
|
+
blackBright: f3("\x1B[90m", "\x1B[39m"),
|
|
74047
|
+
redBright: f3("\x1B[91m", "\x1B[39m"),
|
|
74048
|
+
greenBright: f3("\x1B[92m", "\x1B[39m"),
|
|
74049
|
+
yellowBright: f3("\x1B[93m", "\x1B[39m"),
|
|
74050
|
+
blueBright: f3("\x1B[94m", "\x1B[39m"),
|
|
74051
|
+
magentaBright: f3("\x1B[95m", "\x1B[39m"),
|
|
74052
|
+
cyanBright: f3("\x1B[96m", "\x1B[39m"),
|
|
74053
|
+
whiteBright: f3("\x1B[97m", "\x1B[39m"),
|
|
74054
|
+
bgBlackBright: f3("\x1B[100m", "\x1B[49m"),
|
|
74055
|
+
bgRedBright: f3("\x1B[101m", "\x1B[49m"),
|
|
74056
|
+
bgGreenBright: f3("\x1B[102m", "\x1B[49m"),
|
|
74057
|
+
bgYellowBright: f3("\x1B[103m", "\x1B[49m"),
|
|
74058
|
+
bgBlueBright: f3("\x1B[104m", "\x1B[49m"),
|
|
74059
|
+
bgMagentaBright: f3("\x1B[105m", "\x1B[49m"),
|
|
74060
|
+
bgCyanBright: f3("\x1B[106m", "\x1B[49m"),
|
|
74061
|
+
bgWhiteBright: f3("\x1B[107m", "\x1B[49m")
|
|
74062
|
+
};
|
|
74063
|
+
};
|
|
74064
|
+
module.exports = createColors();
|
|
74065
|
+
module.exports.createColors = createColors;
|
|
74066
|
+
});
|
|
74067
|
+
|
|
73998
74068
|
// src/commands/watch/phases/implementation-git-helpers.ts
|
|
73999
74069
|
import { spawn as spawn5 } from "node:child_process";
|
|
74000
74070
|
async function getCurrentBranch2(cwd2) {
|
|
@@ -107431,7 +107501,7 @@ import { basename as basename27, join as join142, resolve as resolve46 } from "n
|
|
|
107431
107501
|
init_logger();
|
|
107432
107502
|
|
|
107433
107503
|
// src/ui/ck-cli-design/tokens.ts
|
|
107434
|
-
var import_picocolors27 = __toESM(
|
|
107504
|
+
var import_picocolors27 = __toESM(require_picocolors2(), 1);
|
|
107435
107505
|
import { homedir as homedir47, platform as platform16 } from "node:os";
|
|
107436
107506
|
import { resolve as resolve45, win32 as win322 } from "node:path";
|
|
107437
107507
|
var PANEL_MIN_WIDTH = 60;
|