unoverse 0.1.9 → 0.1.10

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/bin/unoverse.mjs +6 -5
  2. package/package.json +1 -1
package/bin/unoverse.mjs CHANGED
@@ -61,8 +61,10 @@ const cyan = paint("36");
61
61
  const green = paint("32");
62
62
 
63
63
  const CMDS = [
64
- ["create [name]", "What are you building? Studio project · universe · client app",
65
- "No name scaffolds into the folder you are in; a name makes one"],
64
+ // TWO LINES, not one with a caveat. "No name scaffolds into the folder you are in;
65
+ // a name makes one" made the reader hold both cases in their head to understand either.
66
+ ["create", "What are you building? Studio project · universe · client app"],
67
+ ["create <name>", "The same, in a new folder"],
66
68
  ["studio", "Author components, nodes, agent skills"],
67
69
  ["where", "Your universe's addresses, probed live, not recited"],
68
70
  ["update", "Update this CLI to the latest version"],
@@ -74,10 +76,9 @@ const HELP = [
74
76
  "",
75
77
  ` ${cyan("⬡")} ${bold("unoverse")}`,
76
78
  "",
77
- ...CMDS.flatMap(([cmd, desc, note]) => [
79
+ ...CMDS.map(([cmd, desc]) =>
78
80
  ` ${green(cmd)}${" ".repeat(PAD - cmd.length)} ${desc}`,
79
- ...(note ? [` ${" ".repeat(PAD)} ${dim(note)}`] : []),
80
- ]),
81
+ ),
81
82
  "",
82
83
  ].join("\n");
83
84
  // NO "in a universe folder, add: ..." line. It named a thing a new user has never seen
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unoverse",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "The Unoverse front door — create a Studio project, a universe, or a client app, and launch Studio.",
5
5
  "license": "SEE LICENSE IN README.md",
6
6
  "type": "module",