unoverse 0.1.16 → 0.1.17

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/lib/create.mjs +1 -1
  2. package/package.json +1 -1
package/lib/create.mjs CHANGED
@@ -248,7 +248,7 @@ export async function create(nameArg) {
248
248
  env: { ...process.env, UNOVERSE_DOCR_TOKEN: token },
249
249
  });
250
250
  if (r.status !== 0) {
251
- fail("setup did not finish. Run 'unoverse init' in that folder to pick it up");
251
+ fail(`setup did not finish. Run 'unoverse init'${name === "." ? "" : ` in ./${name}`} to pick it up`);
252
252
  process.exit(r.status ?? 1);
253
253
  }
254
254
  console.log(`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unoverse",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
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",