synthesisui 0.16.38 → 0.16.39
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
|
@@ -391,7 +391,7 @@ export async function runImport(opts) {
|
|
|
391
391
|
if (n?.decisions && n.decisions > 0) {
|
|
392
392
|
console.log("");
|
|
393
393
|
console.log(section("What a v2 would normalize"));
|
|
394
|
-
console.log(body(`${paint.strong(String(n.decisions))} colour${n.decisions === 1 ? "" : "s"}
|
|
394
|
+
console.log(body(`${paint.strong(String(n.decisions))} colour decision${n.decisions === 1 ? "" : "s"} to settle - ${paint.strong(String(n.governs ?? n.retires ?? 0))} uses would come under a name.`));
|
|
395
395
|
for (const line of n.lines ?? [])
|
|
396
396
|
console.log(body(paint.dim(line)));
|
|
397
397
|
console.log("");
|
package/package.json
CHANGED