synthesisui 0.16.424 → 0.16.425
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 +21 -0
- package/package.json +1 -1
package/dist/commands/sync.js
CHANGED
|
@@ -42,6 +42,21 @@ import { resolveReadParts, siblingProjects, takeCensus, } from "./import.js";
|
|
|
42
42
|
export function draftLine(slug, base) {
|
|
43
43
|
return `this went into your DRAFT - your repository still has what you installed. It reaches the disk once you publish${base ? `: ${base}/dashboard/mine/${slug}/publish` : ""}\n then: npx synthesisui@latest upgrade ${slug}`;
|
|
44
44
|
}
|
|
45
|
+
/**
|
|
46
|
+
* O TRABALHO DELA FOI PARA A RAMIFICAÇÃO DELA, E ISSO SE DIZ - `INV-BRANCH-02`.
|
|
47
|
+
*
|
|
48
|
+
* O QUE O CLIENTE VIA SEM ISTO: `62 of 62 components written.` - a mesma frase de quem move a
|
|
49
|
+
* linha principal. Ela fecharia o terminal achando que o time recebeu, e descobriria o contrário
|
|
50
|
+
* num dia em que estivesse contando com aquilo. É a lacuna calada que a lei 8 proíbe: o cliente
|
|
51
|
+
* perdoa o que a gente diz que não faz, e não perdoa descobrir sozinho.
|
|
52
|
+
*
|
|
53
|
+
* A FRASE DIZ TRÊS COISAS, nesta ordem: onde o trabalho está, que ele está inteiro, e o que falta
|
|
54
|
+
* para alcançar o time. Sem a terceira ela é um aviso sem saída - e quem lê não tem o que fazer
|
|
55
|
+
* com ele.
|
|
56
|
+
*/
|
|
57
|
+
export function branchLine(slug, base) {
|
|
58
|
+
return `this went to YOUR branch, not to the main line your team installs - nothing of it was lost. It reaches them when whoever owns this system approves it${base ? `: ${base}/dashboard/mine/${slug}` : ""}`;
|
|
59
|
+
}
|
|
45
60
|
export function decisionLine(d, slug,
|
|
46
61
|
/** Onde o sistema dele vive - o `publish` mora lá, e sem o endereço a frase manda procurar. */
|
|
47
62
|
base) {
|
|
@@ -629,6 +644,12 @@ export async function remeasure(args) {
|
|
|
629
644
|
console.log("");
|
|
630
645
|
console.log(section("Sent"));
|
|
631
646
|
console.log(body(`${out.written ?? 0} of ${out.total ?? 0} components written.`));
|
|
647
|
+
/**
|
|
648
|
+
* E ONDE ELE CAIU, logo abaixo do número - porque é o número que ela leria como "o time
|
|
649
|
+
* recebeu".
|
|
650
|
+
*/
|
|
651
|
+
if (out.landedOn === "branch")
|
|
652
|
+
console.log(body(paint.strong(branchLine(slug, base))));
|
|
632
653
|
/**
|
|
633
654
|
* O QUE VEIO DOS ARQUIVOS DELE, DITO - e antes de qualquer outra nota, porque é a única parte
|
|
634
655
|
* desta saída que fala do trabalho que ELE acabou de fazer.
|
package/package.json
CHANGED