unoverse 0.1.8 → 0.1.9
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/bin/unoverse.mjs +3 -2
- package/package.json +1 -1
package/bin/unoverse.mjs
CHANGED
|
@@ -79,9 +79,10 @@ const HELP = [
|
|
|
79
79
|
...(note ? [` ${" ".repeat(PAD)} ${dim(note)}`] : []),
|
|
80
80
|
]),
|
|
81
81
|
"",
|
|
82
|
-
` ${dim("In a universe folder, add:")} ${green("start")} ${dim("·")} ${green("stop")} ${dim("·")} ${green("check")} ${dim("·")} ${green("logs")} ${dim("·")} ${green("deploy")}`,
|
|
83
|
-
"",
|
|
84
82
|
].join("\n");
|
|
83
|
+
// NO "in a universe folder, add: ..." line. It named a thing a new user has never seen
|
|
84
|
+
// and listed commands they cannot run. The CLI already knows where you are standing, so
|
|
85
|
+
// those commands appear when they apply and stay invisible when they do not.
|
|
85
86
|
|
|
86
87
|
switch (cmd) {
|
|
87
88
|
case "create":
|
package/package.json
CHANGED