innovationhub-cli 2.0.0 → 2.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.
Files changed (2) hide show
  1. package/index.js +11 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -14,6 +14,15 @@ import {
14
14
  const require = createRequire(import.meta.url);
15
15
  const { version } = require("./package.json");
16
16
 
17
+ const banner = `
18
+ ${pc.blue(" ___ _ _")} ${pc.yellow(" _ _ _")}
19
+ ${pc.blue(" |_ _|_ __ _ __ _____ ____ _| |_(_) ___ _ __")} ${pc.yellow("| | | |_ _| |__")}
20
+ ${pc.blue(" | || '_ \\| '_ \\ / _ \\ \\ / / _` | __| |/ _ \\| '_ \\")}${pc.yellow("| |_| | | | | '_ \\")}
21
+ ${pc.blue(" | || | | | | | | (_) \\ V / (_| | |_| | (_) | | | |")}${pc.yellow(" _ | |_| | |_) |")}
22
+ ${pc.blue(" |___|_| |_|_| |_|\\___/ \\_/ \\__,_|\\__|_|\\___/|_| |_|")}${pc.yellow("_| |_|\\__,_|_.__/")}
23
+ ${pc.dim(` v${version}`)}
24
+ `;
25
+
17
26
  // ── Parse CLI flags ──────────────────────────────────────────────
18
27
  const { values: flags } = parseArgs({
19
28
  options: {
@@ -63,7 +72,8 @@ ${pc.bold("Exemplos:")}
63
72
  }
64
73
 
65
74
  async function main() {
66
- p.intro(pc.bgCyan(pc.black(` InnovationHub CLI v${version} `)));
75
+ console.log(banner);
76
+ p.intro(pc.bgCyan(pc.black(" InnovationHub CLI ")));
67
77
 
68
78
  // Descobrir stacks disponíveis
69
79
  const availableStacks = await getAvailableStacks();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "innovationhub-cli",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "CLI oficial da InnovationHub para inicializar projetos.",
5
5
  "main": "index.js",
6
6
  "bin": {