synthesisui 0.16.43 → 0.16.44
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/dist/commands/import.js +1 -1
- package/package.json +1 -1
package/dist/commands/import.js
CHANGED
|
@@ -447,7 +447,7 @@ async function askName(suggested) {
|
|
|
447
447
|
try {
|
|
448
448
|
console.log("");
|
|
449
449
|
console.log(section("What should this system be called"));
|
|
450
|
-
console.log(body(paint.faint("
|
|
450
|
+
console.log(body(paint.faint("Answering creates it on your account. You can rename it later; the install slug never changes.")));
|
|
451
451
|
const answer = await rl.question(` name [${suggested}]: `);
|
|
452
452
|
const clean = answer.trim().slice(0, 60);
|
|
453
453
|
return clean || suggested;
|
package/package.json
CHANGED