gearbox-code 0.1.28 → 0.1.29
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/dist/cli.mjs +72 -10
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -147904,7 +147904,7 @@ init_permission();
|
|
|
147904
147904
|
var jsx_dev_runtime13 = __toESM(require_jsx_dev_runtime(), 1);
|
|
147905
147905
|
process.env.LANG = process.env.LANG || "en_US.UTF-8";
|
|
147906
147906
|
process.env.LC_ALL = process.env.LC_ALL || "en_US.UTF-8";
|
|
147907
|
-
var VERSION16 = "0.1.
|
|
147907
|
+
var VERSION16 = "0.1.29";
|
|
147908
147908
|
var args = process.argv.slice(2);
|
|
147909
147909
|
var supportsAnsi = process.env.FORCE_COLOR === "1" || process.env.TERM !== "dumb" && process.env.NO_COLOR !== "1" && process.stdout.isTTY;
|
|
147910
147910
|
var ansi = (code) => supportsAnsi ? `\x1B[${code}m` : "";
|
|
@@ -147925,19 +147925,81 @@ function onboardingBanner(termWidth) {
|
|
|
147925
147925
|
return " ".repeat(pad3) + s2;
|
|
147926
147926
|
};
|
|
147927
147927
|
const F2 = {
|
|
147928
|
-
G: [
|
|
147929
|
-
|
|
147930
|
-
|
|
147931
|
-
|
|
147932
|
-
|
|
147933
|
-
|
|
147934
|
-
|
|
147928
|
+
G: [
|
|
147929
|
+
" ██████ ",
|
|
147930
|
+
"██ ",
|
|
147931
|
+
"██ ",
|
|
147932
|
+
"██ ████",
|
|
147933
|
+
"██ ██",
|
|
147934
|
+
"██ ██",
|
|
147935
|
+
" ██████ "
|
|
147936
|
+
],
|
|
147937
|
+
E: [
|
|
147938
|
+
"████████",
|
|
147939
|
+
"██ ",
|
|
147940
|
+
"██ ",
|
|
147941
|
+
"██████ ",
|
|
147942
|
+
"██ ",
|
|
147943
|
+
"██ ",
|
|
147944
|
+
"████████"
|
|
147945
|
+
],
|
|
147946
|
+
A: [
|
|
147947
|
+
" ████ ",
|
|
147948
|
+
" ██ ██ ",
|
|
147949
|
+
"██ ██",
|
|
147950
|
+
"████████",
|
|
147951
|
+
"██ ██",
|
|
147952
|
+
"██ ██",
|
|
147953
|
+
"██ ██"
|
|
147954
|
+
],
|
|
147955
|
+
R: [
|
|
147956
|
+
"███████ ",
|
|
147957
|
+
"██ ██",
|
|
147958
|
+
"██ ██",
|
|
147959
|
+
"███████ ",
|
|
147960
|
+
"████ ",
|
|
147961
|
+
"██ ██ ",
|
|
147962
|
+
"██ ███"
|
|
147963
|
+
],
|
|
147964
|
+
B: [
|
|
147965
|
+
"███████ ",
|
|
147966
|
+
"██ ██",
|
|
147967
|
+
"██ ██",
|
|
147968
|
+
"███████ ",
|
|
147969
|
+
"██ ██",
|
|
147970
|
+
"██ ██",
|
|
147971
|
+
"███████ "
|
|
147972
|
+
],
|
|
147973
|
+
O: [
|
|
147974
|
+
" ██████ ",
|
|
147975
|
+
"██ ██",
|
|
147976
|
+
"██ ██",
|
|
147977
|
+
"██ ██",
|
|
147978
|
+
"██ ██",
|
|
147979
|
+
"██ ██",
|
|
147980
|
+
" ██████ "
|
|
147981
|
+
],
|
|
147982
|
+
X: [
|
|
147983
|
+
"██ ██",
|
|
147984
|
+
" ██ ██ ",
|
|
147985
|
+
" ████ ",
|
|
147986
|
+
" ██ ",
|
|
147987
|
+
" ████ ",
|
|
147988
|
+
" ██ ██ ",
|
|
147989
|
+
"██ ██"
|
|
147990
|
+
]
|
|
147935
147991
|
};
|
|
147992
|
+
const letters = "GEARBOX".split("");
|
|
147936
147993
|
console.log("");
|
|
147937
|
-
for (let r2 = 0;r2 <
|
|
147938
|
-
const line =
|
|
147994
|
+
for (let r2 = 0;r2 < 7; r2++) {
|
|
147995
|
+
const line = letters.map((ch) => F2[ch]?.[r2] ?? " ").join(" ");
|
|
147939
147996
|
console.log(center(accent(line)));
|
|
147940
147997
|
}
|
|
147998
|
+
const shadow = letters.map((ch) => {
|
|
147999
|
+
const last3 = F2[ch]?.[6] ?? " ";
|
|
148000
|
+
return last3.split("").map((c) => c === " " ? " " : "▀").join("");
|
|
148001
|
+
}).join(" ");
|
|
148002
|
+
console.log(center(dim(shadow)));
|
|
147941
148003
|
console.log("");
|
|
147942
148004
|
console.log(center(dim("one terminal · every model you pay for")));
|
|
147943
148005
|
console.log(center(dim("keys stay local · never sent anywhere")));
|
package/package.json
CHANGED