@chiendt/ack-cli 1.0.0-dev.2 → 1.0.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
|
@@ -63692,7 +63692,7 @@ var package_default;
|
|
|
63692
63692
|
var init_package = __esm(() => {
|
|
63693
63693
|
package_default = {
|
|
63694
63694
|
name: "@chiendt/ack-cli",
|
|
63695
|
-
version: "1.0.
|
|
63695
|
+
version: "1.0.1",
|
|
63696
63696
|
description: "ACK CLI - tool for bootstrapping and updating ACK kits (Claude Code agent kits)",
|
|
63697
63697
|
type: "module",
|
|
63698
63698
|
repository: {
|
|
@@ -76375,6 +76375,76 @@ var init_ownership_display = __esm(() => {
|
|
|
76375
76375
|
import_picocolors25 = __toESM(require_picocolors(), 1);
|
|
76376
76376
|
});
|
|
76377
76377
|
|
|
76378
|
+
// src/ui/node_modules/picocolors/picocolors.js
|
|
76379
|
+
var require_picocolors2 = __commonJS((exports, module) => {
|
|
76380
|
+
var p2 = process || {};
|
|
76381
|
+
var argv = p2.argv || [];
|
|
76382
|
+
var env3 = p2.env || {};
|
|
76383
|
+
var isColorSupported = !(!!env3.NO_COLOR || argv.includes("--no-color")) && (!!env3.FORCE_COLOR || argv.includes("--color") || p2.platform === "win32" || (p2.stdout || {}).isTTY && env3.TERM !== "dumb" || !!env3.CI);
|
|
76384
|
+
var formatter = (open6, close, replace = open6) => (input) => {
|
|
76385
|
+
let string = "" + input, index = string.indexOf(close, open6.length);
|
|
76386
|
+
return ~index ? open6 + replaceClose(string, close, replace, index) + close : open6 + string + close;
|
|
76387
|
+
};
|
|
76388
|
+
var replaceClose = (string, close, replace, index) => {
|
|
76389
|
+
let result = "", cursor = 0;
|
|
76390
|
+
do {
|
|
76391
|
+
result += string.substring(cursor, index) + replace;
|
|
76392
|
+
cursor = index + close.length;
|
|
76393
|
+
index = string.indexOf(close, cursor);
|
|
76394
|
+
} while (~index);
|
|
76395
|
+
return result + string.substring(cursor);
|
|
76396
|
+
};
|
|
76397
|
+
var createColors = (enabled = isColorSupported) => {
|
|
76398
|
+
let f4 = enabled ? formatter : () => String;
|
|
76399
|
+
return {
|
|
76400
|
+
isColorSupported: enabled,
|
|
76401
|
+
reset: f4("\x1B[0m", "\x1B[0m"),
|
|
76402
|
+
bold: f4("\x1B[1m", "\x1B[22m", "\x1B[22m\x1B[1m"),
|
|
76403
|
+
dim: f4("\x1B[2m", "\x1B[22m", "\x1B[22m\x1B[2m"),
|
|
76404
|
+
italic: f4("\x1B[3m", "\x1B[23m"),
|
|
76405
|
+
underline: f4("\x1B[4m", "\x1B[24m"),
|
|
76406
|
+
inverse: f4("\x1B[7m", "\x1B[27m"),
|
|
76407
|
+
hidden: f4("\x1B[8m", "\x1B[28m"),
|
|
76408
|
+
strikethrough: f4("\x1B[9m", "\x1B[29m"),
|
|
76409
|
+
black: f4("\x1B[30m", "\x1B[39m"),
|
|
76410
|
+
red: f4("\x1B[31m", "\x1B[39m"),
|
|
76411
|
+
green: f4("\x1B[32m", "\x1B[39m"),
|
|
76412
|
+
yellow: f4("\x1B[33m", "\x1B[39m"),
|
|
76413
|
+
blue: f4("\x1B[34m", "\x1B[39m"),
|
|
76414
|
+
magenta: f4("\x1B[35m", "\x1B[39m"),
|
|
76415
|
+
cyan: f4("\x1B[36m", "\x1B[39m"),
|
|
76416
|
+
white: f4("\x1B[37m", "\x1B[39m"),
|
|
76417
|
+
gray: f4("\x1B[90m", "\x1B[39m"),
|
|
76418
|
+
bgBlack: f4("\x1B[40m", "\x1B[49m"),
|
|
76419
|
+
bgRed: f4("\x1B[41m", "\x1B[49m"),
|
|
76420
|
+
bgGreen: f4("\x1B[42m", "\x1B[49m"),
|
|
76421
|
+
bgYellow: f4("\x1B[43m", "\x1B[49m"),
|
|
76422
|
+
bgBlue: f4("\x1B[44m", "\x1B[49m"),
|
|
76423
|
+
bgMagenta: f4("\x1B[45m", "\x1B[49m"),
|
|
76424
|
+
bgCyan: f4("\x1B[46m", "\x1B[49m"),
|
|
76425
|
+
bgWhite: f4("\x1B[47m", "\x1B[49m"),
|
|
76426
|
+
blackBright: f4("\x1B[90m", "\x1B[39m"),
|
|
76427
|
+
redBright: f4("\x1B[91m", "\x1B[39m"),
|
|
76428
|
+
greenBright: f4("\x1B[92m", "\x1B[39m"),
|
|
76429
|
+
yellowBright: f4("\x1B[93m", "\x1B[39m"),
|
|
76430
|
+
blueBright: f4("\x1B[94m", "\x1B[39m"),
|
|
76431
|
+
magentaBright: f4("\x1B[95m", "\x1B[39m"),
|
|
76432
|
+
cyanBright: f4("\x1B[96m", "\x1B[39m"),
|
|
76433
|
+
whiteBright: f4("\x1B[97m", "\x1B[39m"),
|
|
76434
|
+
bgBlackBright: f4("\x1B[100m", "\x1B[49m"),
|
|
76435
|
+
bgRedBright: f4("\x1B[101m", "\x1B[49m"),
|
|
76436
|
+
bgGreenBright: f4("\x1B[102m", "\x1B[49m"),
|
|
76437
|
+
bgYellowBright: f4("\x1B[103m", "\x1B[49m"),
|
|
76438
|
+
bgBlueBright: f4("\x1B[104m", "\x1B[49m"),
|
|
76439
|
+
bgMagentaBright: f4("\x1B[105m", "\x1B[49m"),
|
|
76440
|
+
bgCyanBright: f4("\x1B[106m", "\x1B[49m"),
|
|
76441
|
+
bgWhiteBright: f4("\x1B[107m", "\x1B[49m")
|
|
76442
|
+
};
|
|
76443
|
+
};
|
|
76444
|
+
module.exports = createColors();
|
|
76445
|
+
module.exports.createColors = createColors;
|
|
76446
|
+
});
|
|
76447
|
+
|
|
76378
76448
|
// src/commands/watch/phases/implementation-git-helpers.ts
|
|
76379
76449
|
import { spawn as spawn5 } from "node:child_process";
|
|
76380
76450
|
async function getCurrentBranch2(cwd2) {
|
|
@@ -104994,7 +105064,7 @@ import { basename as basename28, join as join142, resolve as resolve49 } from "n
|
|
|
104994
105064
|
init_logger();
|
|
104995
105065
|
|
|
104996
105066
|
// src/ui/ack-cli-design/tokens.ts
|
|
104997
|
-
var import_picocolors27 = __toESM(
|
|
105067
|
+
var import_picocolors27 = __toESM(require_picocolors2(), 1);
|
|
104998
105068
|
import { homedir as homedir48, platform as platform12 } from "node:os";
|
|
104999
105069
|
import { resolve as resolve48, win32 } from "node:path";
|
|
105000
105070
|
var PANEL_MIN_WIDTH = 60;
|