@mutmutco/hub 4.5.33 → 4.5.34
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/index.cjs +14 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -94,6 +94,9 @@ var import_node_path16 = require("node:path");
|
|
|
94
94
|
var import_node_fs = require("node:fs");
|
|
95
95
|
|
|
96
96
|
// ../installer/face/src/products.ts
|
|
97
|
+
function closingLine(identity) {
|
|
98
|
+
return identity.open ? `Open it any time: ${identity.open}` : `Check health any time: ${identity.doctor}`;
|
|
99
|
+
}
|
|
97
100
|
var PRODUCTS = Object.freeze({
|
|
98
101
|
"mm-strategy": Object.freeze({
|
|
99
102
|
name: "MM Strategy",
|
|
@@ -119,6 +122,16 @@ var PRODUCTS = Object.freeze({
|
|
|
119
122
|
warm: "Welcome back. Checking for updates...",
|
|
120
123
|
doctor: "jerv doctor"
|
|
121
124
|
}),
|
|
125
|
+
// #7318: the MM-Work desktop app (a signed setup, not a launcher). Accent: owner pick 2026-09-25 (indigo).
|
|
126
|
+
"mm-work": Object.freeze({
|
|
127
|
+
name: "MM-Work",
|
|
128
|
+
installWarm: "Welcome. Let's get you ready.",
|
|
129
|
+
checkWarm: "Here's where things stand.",
|
|
130
|
+
accent: "38;2;129;140;248",
|
|
131
|
+
warm: "Welcome back. Checking for updates...",
|
|
132
|
+
doctor: "",
|
|
133
|
+
open: "Start menu > MM-Work"
|
|
134
|
+
}),
|
|
122
135
|
jervcode: Object.freeze({
|
|
123
136
|
name: "JervCode",
|
|
124
137
|
installWarm: "Welcome. Let's get you ready.",
|
|
@@ -287,7 +300,7 @@ function createFace({ product, color = false, columns, env = process.env, operat
|
|
|
287
300
|
return receipt([
|
|
288
301
|
`${GLYPH.check} ${identity.name} is ready.`,
|
|
289
302
|
fact,
|
|
290
|
-
|
|
303
|
+
closingLine(identity)
|
|
291
304
|
], options);
|
|
292
305
|
};
|
|
293
306
|
const signOff = () => nested ? "" : `${paint(identity.accent, GLYPH.diamond)} ${paint(identity.accent, `${identity.name} \xB7 Mutatis Mutandis`)}`;
|
package/package.json
CHANGED