claudekit-cli 4.3.0-dev.1 → 4.3.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
|
@@ -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.3.
|
|
63261
|
+
version: "4.3.1",
|
|
63262
63262
|
description: "CLI tool for bootstrapping and updating ClaudeKit projects",
|
|
63263
63263
|
type: "module",
|
|
63264
63264
|
repository: {
|
|
@@ -75691,6 +75691,76 @@ var init_ownership_display = __esm(() => {
|
|
|
75691
75691
|
import_picocolors25 = __toESM(require_picocolors(), 1);
|
|
75692
75692
|
});
|
|
75693
75693
|
|
|
75694
|
+
// src/ui/node_modules/picocolors/picocolors.js
|
|
75695
|
+
var require_picocolors2 = __commonJS((exports, module) => {
|
|
75696
|
+
var p = process || {};
|
|
75697
|
+
var argv = p.argv || [];
|
|
75698
|
+
var env2 = p.env || {};
|
|
75699
|
+
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);
|
|
75700
|
+
var formatter = (open6, close, replace3 = open6) => (input) => {
|
|
75701
|
+
let string = "" + input, index = string.indexOf(close, open6.length);
|
|
75702
|
+
return ~index ? open6 + replaceClose(string, close, replace3, index) + close : open6 + string + close;
|
|
75703
|
+
};
|
|
75704
|
+
var replaceClose = (string, close, replace3, index) => {
|
|
75705
|
+
let result = "", cursor = 0;
|
|
75706
|
+
do {
|
|
75707
|
+
result += string.substring(cursor, index) + replace3;
|
|
75708
|
+
cursor = index + close.length;
|
|
75709
|
+
index = string.indexOf(close, cursor);
|
|
75710
|
+
} while (~index);
|
|
75711
|
+
return result + string.substring(cursor);
|
|
75712
|
+
};
|
|
75713
|
+
var createColors = (enabled = isColorSupported) => {
|
|
75714
|
+
let f3 = enabled ? formatter : () => String;
|
|
75715
|
+
return {
|
|
75716
|
+
isColorSupported: enabled,
|
|
75717
|
+
reset: f3("\x1B[0m", "\x1B[0m"),
|
|
75718
|
+
bold: f3("\x1B[1m", "\x1B[22m", "\x1B[22m\x1B[1m"),
|
|
75719
|
+
dim: f3("\x1B[2m", "\x1B[22m", "\x1B[22m\x1B[2m"),
|
|
75720
|
+
italic: f3("\x1B[3m", "\x1B[23m"),
|
|
75721
|
+
underline: f3("\x1B[4m", "\x1B[24m"),
|
|
75722
|
+
inverse: f3("\x1B[7m", "\x1B[27m"),
|
|
75723
|
+
hidden: f3("\x1B[8m", "\x1B[28m"),
|
|
75724
|
+
strikethrough: f3("\x1B[9m", "\x1B[29m"),
|
|
75725
|
+
black: f3("\x1B[30m", "\x1B[39m"),
|
|
75726
|
+
red: f3("\x1B[31m", "\x1B[39m"),
|
|
75727
|
+
green: f3("\x1B[32m", "\x1B[39m"),
|
|
75728
|
+
yellow: f3("\x1B[33m", "\x1B[39m"),
|
|
75729
|
+
blue: f3("\x1B[34m", "\x1B[39m"),
|
|
75730
|
+
magenta: f3("\x1B[35m", "\x1B[39m"),
|
|
75731
|
+
cyan: f3("\x1B[36m", "\x1B[39m"),
|
|
75732
|
+
white: f3("\x1B[37m", "\x1B[39m"),
|
|
75733
|
+
gray: f3("\x1B[90m", "\x1B[39m"),
|
|
75734
|
+
bgBlack: f3("\x1B[40m", "\x1B[49m"),
|
|
75735
|
+
bgRed: f3("\x1B[41m", "\x1B[49m"),
|
|
75736
|
+
bgGreen: f3("\x1B[42m", "\x1B[49m"),
|
|
75737
|
+
bgYellow: f3("\x1B[43m", "\x1B[49m"),
|
|
75738
|
+
bgBlue: f3("\x1B[44m", "\x1B[49m"),
|
|
75739
|
+
bgMagenta: f3("\x1B[45m", "\x1B[49m"),
|
|
75740
|
+
bgCyan: f3("\x1B[46m", "\x1B[49m"),
|
|
75741
|
+
bgWhite: f3("\x1B[47m", "\x1B[49m"),
|
|
75742
|
+
blackBright: f3("\x1B[90m", "\x1B[39m"),
|
|
75743
|
+
redBright: f3("\x1B[91m", "\x1B[39m"),
|
|
75744
|
+
greenBright: f3("\x1B[92m", "\x1B[39m"),
|
|
75745
|
+
yellowBright: f3("\x1B[93m", "\x1B[39m"),
|
|
75746
|
+
blueBright: f3("\x1B[94m", "\x1B[39m"),
|
|
75747
|
+
magentaBright: f3("\x1B[95m", "\x1B[39m"),
|
|
75748
|
+
cyanBright: f3("\x1B[96m", "\x1B[39m"),
|
|
75749
|
+
whiteBright: f3("\x1B[97m", "\x1B[39m"),
|
|
75750
|
+
bgBlackBright: f3("\x1B[100m", "\x1B[49m"),
|
|
75751
|
+
bgRedBright: f3("\x1B[101m", "\x1B[49m"),
|
|
75752
|
+
bgGreenBright: f3("\x1B[102m", "\x1B[49m"),
|
|
75753
|
+
bgYellowBright: f3("\x1B[103m", "\x1B[49m"),
|
|
75754
|
+
bgBlueBright: f3("\x1B[104m", "\x1B[49m"),
|
|
75755
|
+
bgMagentaBright: f3("\x1B[105m", "\x1B[49m"),
|
|
75756
|
+
bgCyanBright: f3("\x1B[106m", "\x1B[49m"),
|
|
75757
|
+
bgWhiteBright: f3("\x1B[107m", "\x1B[49m")
|
|
75758
|
+
};
|
|
75759
|
+
};
|
|
75760
|
+
module.exports = createColors();
|
|
75761
|
+
module.exports.createColors = createColors;
|
|
75762
|
+
});
|
|
75763
|
+
|
|
75694
75764
|
// src/commands/watch/phases/implementation-git-helpers.ts
|
|
75695
75765
|
import { spawn as spawn5 } from "node:child_process";
|
|
75696
75766
|
async function getCurrentBranch2(cwd2) {
|
|
@@ -108065,7 +108135,7 @@ import { basename as basename29, join as join143, resolve as resolve49 } from "n
|
|
|
108065
108135
|
init_logger();
|
|
108066
108136
|
|
|
108067
108137
|
// src/ui/ck-cli-design/tokens.ts
|
|
108068
|
-
var import_picocolors27 = __toESM(
|
|
108138
|
+
var import_picocolors27 = __toESM(require_picocolors2(), 1);
|
|
108069
108139
|
import { homedir as homedir48, platform as platform16 } from "node:os";
|
|
108070
108140
|
import { resolve as resolve48, win32 as win322 } from "node:path";
|
|
108071
108141
|
var PANEL_MIN_WIDTH = 60;
|