@lexmanh/shed-cli 0.2.0-beta.9 → 0.3.0-beta.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/dist/cli.js +6 -3
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -1043,15 +1043,18 @@ function scheduleBackgroundRefresh() {
|
|
|
1043
1043
|
|
|
1044
1044
|
// src/logo.ts
|
|
1045
1045
|
import pc8 from "picocolors";
|
|
1046
|
-
var
|
|
1046
|
+
var CABIN = [" \u2571\u2572 ", " \u2571\u2500\u2500\u2572 ", " \u2571\u2500\u2500\u2500\u2500\u2572 ", " \u2502 \u2588\u2588 \u2502 ", " \u2514\u2500\u2500\u2500\u2500\u2518 "];
|
|
1047
|
+
var WORDMARK = [
|
|
1047
1048
|
" ____ _ _ ",
|
|
1048
1049
|
" / ___|| |__ ___ __| |",
|
|
1049
1050
|
" \\___ \\| '_ \\ / _ \\/ _` |",
|
|
1050
1051
|
" ___) | | | | __/ (_| |",
|
|
1051
1052
|
" |____/|_| |_|\\___|\\__,_|"
|
|
1052
|
-
]
|
|
1053
|
+
];
|
|
1053
1054
|
function printLogo(version2) {
|
|
1054
|
-
|
|
1055
|
+
for (let i = 0; i < CABIN.length; i++) {
|
|
1056
|
+
console.log(pc8.yellow(CABIN[i]) + pc8.cyan(WORDMARK[i]));
|
|
1057
|
+
}
|
|
1055
1058
|
console.log(` ${pc8.dim(`v${version2} \xB7 safe disk cleanup \xB7 dev machines & servers`)}`);
|
|
1056
1059
|
console.log(
|
|
1057
1060
|
` ${pc8.dim("by")} ${pc8.white("L\xEA Xu\xE2n M\u1EA1nh")} ${pc8.dim("\xB7 https://github.com/lexmanh/shed")}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lexmanh/shed-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0-beta.1",
|
|
4
4
|
"description": "Safe disk cleanup CLI for dev machines and Linux servers — git-aware, cross-stack, trash-by-default",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"conf": "^13.1.0",
|
|
24
24
|
"execa": "^9.5.0",
|
|
25
25
|
"picocolors": "^1.1.1",
|
|
26
|
-
"@lexmanh/shed-core": "0.
|
|
26
|
+
"@lexmanh/shed-core": "0.3.0-beta.1"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/node": "^22.10.0",
|