genbox 1.0.126 → 1.0.128
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/utils/logo.js +13 -2
- package/package.json +1 -1
package/dist/utils/logo.js
CHANGED
|
@@ -6,6 +6,17 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.printLogo = printLogo;
|
|
7
7
|
exports.getLogo = getLogo;
|
|
8
8
|
const chalk_1 = __importDefault(require("chalk"));
|
|
9
|
+
const GENBOX_SMALL_LOGO = `
|
|
10
|
+
XXX
|
|
11
|
+
XXX
|
|
12
|
+
XXXXXXXXXXXX XXXXXXXXXX XXX XXXX XXX XXXXX XXXXXXXXXX XXXX XXXX
|
|
13
|
+
XXXXXX XXXX XXXX XXX XXXXXX XXX XXXXXX XXXXXXXXXX XXXX XXXX
|
|
14
|
+
XXXX XXXX XXXXXXXXXX XXXXXX XXXX XXXXX XXX XXX XXX XXXXXX
|
|
15
|
+
XXXX XX XXXX XXXX XXXXX XXXX XXXX XXX XXXXXXXXXX XXXX XXXX
|
|
16
|
+
XXXX XXXXXXXXXX XXXX XXXX XXXXXXXXXXX XXXXXXXXXX XXXX XXXX
|
|
17
|
+
XXXXXXXXXXXX
|
|
18
|
+
XXXXXXXXXXXX
|
|
19
|
+
`;
|
|
9
20
|
const GENBOX_LOGO = `
|
|
10
21
|
XXXX
|
|
11
22
|
XXXX
|
|
@@ -24,11 +35,11 @@ XXXXXXXXXXXXXX
|
|
|
24
35
|
* @param color - Optional chalk color function (defaults to cyan)
|
|
25
36
|
*/
|
|
26
37
|
function printLogo(color = chalk_1.default.cyan) {
|
|
27
|
-
console.log(color(
|
|
38
|
+
console.log(color(GENBOX_SMALL_LOGO));
|
|
28
39
|
}
|
|
29
40
|
/**
|
|
30
41
|
* Returns the Genbox ASCII art logo string
|
|
31
42
|
*/
|
|
32
43
|
function getLogo() {
|
|
33
|
-
return
|
|
44
|
+
return GENBOX_SMALL_LOGO;
|
|
34
45
|
}
|