synthesisui 0.16.276 → 0.16.277
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/sync.js +10 -0
- package/package.json +1 -1
package/dist/commands/sync.js
CHANGED
|
@@ -500,6 +500,16 @@ export async function remeasure(args) {
|
|
|
500
500
|
console.log(body(`${out.written ?? 0} of ${out.total ?? 0} components written.`));
|
|
501
501
|
for (const note of out.notes ?? [])
|
|
502
502
|
console.log(body(paint.faint(note)));
|
|
503
|
+
/**
|
|
504
|
+
* A RECUSA POR ESCOPO, DITA - e não como um número que some.
|
|
505
|
+
*
|
|
506
|
+
* Sem estas duas linhas o cliente veria "12 of 15 components written" e concluiria que a esteira
|
|
507
|
+
* perdeu três. A frase vem pronta do servidor porque ela nomeia os dois lados, e reescrevê-la
|
|
508
|
+
* aqui seria a segunda versão da mesma explicação - a primeira coisa que a segunda faz é
|
|
509
|
+
* discordar da primeira.
|
|
510
|
+
*/
|
|
511
|
+
for (const said of out.said ?? [])
|
|
512
|
+
console.log(body(paint.strong(said)));
|
|
503
513
|
if (out.url)
|
|
504
514
|
console.log(body(out.url));
|
|
505
515
|
/**
|
package/package.json
CHANGED