@sleetch/cli 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -5
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -18,17 +18,17 @@ const help_command = {
18
18
  fallback: true,
19
19
  action: (args, cli) => {
20
20
  let lines = [
21
- `${styleText("green", "sleetch") + styleText("greenBright", ".net")} is a powerful documentation framework.`,
21
+ `${styleText("cyan", "sleetch") + styleText("cyanBright", ".net")} is a powerful documentation framework.`,
22
22
  "",
23
- `Usage: ${styleText("green", "sleetch")} ${styleText("gray", "<command>")} ${styleText("greenBright", "[...args]")}`,
23
+ `Usage: ${styleText("cyan", "sleetch")} ${styleText("gray", "<command>")} ${styleText("cyanBright", "[...args]")}`,
24
24
  "",
25
25
  "Commands:",
26
26
  ""
27
27
  ];
28
- for (const command of cli.commands) lines.push(` ${styleText("green", command.name)} ${styleText("gray", "-")} ${command.description}`);
28
+ for (const command of cli.commands) lines.push(` ${styleText("cyan", command.name)} ${styleText("gray", "-")} ${command.description}`);
29
29
  lines.push("");
30
- lines.push(`Learn more: ${styleText("gray", "https://") + styleText("green", "sleetch") + styleText("greenBright", ".net")} `);
31
- lines.push(` ${styleText("gray", "https://github.com/tornado-softwares/") + styleText("green", "sleetch")}`);
30
+ lines.push(`Learn more: ${styleText("gray", "https://") + styleText("cyan", "sleetch") + styleText("cyanBright", ".dev")} `);
31
+ lines.push(` ${styleText("gray", "https://github.com/tornado-softwares/") + styleText("cyan", "sleetch")}`);
32
32
  console.log(lines.join("\n"));
33
33
  }
34
34
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sleetch/cli",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -13,7 +13,7 @@
13
13
  "dev": "tsdown --watch"
14
14
  },
15
15
  "dependencies": {
16
- "@sleetch/core": "1.0.4",
16
+ "@sleetch/core": "1.0.5",
17
17
  "zod": "^4.4.3"
18
18
  },
19
19
  "exports": {