create-hedgeboard 1.0.3 → 1.0.4
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/index.js +15 -13
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -130,20 +130,22 @@ const c = {
|
|
|
130
130
|
};
|
|
131
131
|
|
|
132
132
|
function banner() {
|
|
133
|
+
const bk = "\x1b[30m"; // black
|
|
134
|
+
const dg = "\x1b[90m"; // dark gray
|
|
133
135
|
console.log(`
|
|
134
|
-
${
|
|
135
|
-
${
|
|
136
|
-
${
|
|
137
|
-
${
|
|
138
|
-
${
|
|
139
|
-
${
|
|
140
|
-
${
|
|
141
|
-
${
|
|
142
|
-
${
|
|
143
|
-
${
|
|
144
|
-
${
|
|
145
|
-
${
|
|
146
|
-
${c.dim} AI-Native Financial Intelligence — v1.0.
|
|
136
|
+
${bk}${c.bold} ██╗ ██╗███████╗██████╗ ██████╗ ███████╗${c.reset}
|
|
137
|
+
${bk}${c.bold} ██║ ██║██╔════╝██╔══██╗██╔════╝ ██╔════╝${c.reset}
|
|
138
|
+
${bk}${c.bold} ███████║█████╗ ██║ ██║██║ ███╗█████╗ ${c.reset}
|
|
139
|
+
${bk}${c.bold} ██╔══██║██╔══╝ ██║ ██║██║ ██║██╔══╝ ${c.reset}
|
|
140
|
+
${bk}${c.bold} ██║ ██║███████╗██████╔╝╚██████╔╝███████╗${c.reset}
|
|
141
|
+
${bk}${c.bold} ╚═╝ ╚═╝╚══════╝╚═════╝ ╚═════╝ ╚══════╝${c.reset}
|
|
142
|
+
${dg}${c.bold} ██████╗ ██████╗ █████╗ ██████╗ ██████╗ ${c.reset}
|
|
143
|
+
${dg}${c.bold} ██╔══██╗██╔═══██╗██╔══██╗██╔══██╗██╔══██╗${c.reset}
|
|
144
|
+
${dg}${c.bold} ██████╔╝██║ ██║███████║██████╔╝██║ ██║${c.reset}
|
|
145
|
+
${dg}${c.bold} ██╔══██╗██║ ██║██╔══██║██╔══██╗██║ ██║${c.reset}
|
|
146
|
+
${dg}${c.bold} ██████╔╝╚██████╔╝██║ ██║██║ ██║██████╔╝${c.reset}
|
|
147
|
+
${dg}${c.bold} ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ${c.reset}
|
|
148
|
+
${c.dim} AI-Native Financial Intelligence — v1.0.4${c.reset}
|
|
147
149
|
`);
|
|
148
150
|
}
|
|
149
151
|
|