@vlandoss/starter 0.0.12-git-474ac67.0 → 0.0.12
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/package.json +2 -2
- package/src/program/ui.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vlandoss/starter",
|
|
3
|
-
"version": "0.0.12
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "The CLI to init a new project in Variable Land",
|
|
5
5
|
"homepage": "https://github.com/variableland/dx/tree/main/packages/starter#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"commander": "14.0.3",
|
|
28
28
|
"node-plop": "0.32.3",
|
|
29
|
-
"@vlandoss/clibuddy": "0.0.8
|
|
29
|
+
"@vlandoss/clibuddy": "0.0.8",
|
|
30
30
|
"@vlandoss/loggy": "0.0.6"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
package/src/program/ui.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { palette } from "@vlandoss/clibuddy";
|
|
2
2
|
|
|
3
|
-
const UI_LOGO = `⚡ ${
|
|
3
|
+
const UI_LOGO = `⚡ ${palette.bold("V")} ${palette.bold("L")} ${palette.bold("A")} ${palette.bold("N")} ${palette.bold("D")}`;
|
|
4
4
|
|
|
5
|
-
const COMPANY_LOGO = `${
|
|
5
|
+
const COMPANY_LOGO = `${palette.vland("Variable Land")} 👊`;
|
|
6
6
|
|
|
7
7
|
export const BANNER_TEXT = `${UI_LOGO}: The CLI to init a new project in ${COMPANY_LOGO}\n`;
|