fivocell 4.1.5 → 4.1.6
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/package.json +1 -1
- package/scripts/demo.js +3 -3
package/package.json
CHANGED
package/scripts/demo.js
CHANGED
|
@@ -65,11 +65,11 @@ function mcpCall(method, params) {
|
|
|
65
65
|
(async () => {
|
|
66
66
|
console.log(M.clear);
|
|
67
67
|
|
|
68
|
-
banner(
|
|
68
|
+
banner(`FIVO Cell v${pkg.version} — Live Demo`, 'Switch tools. Cell remembers.');
|
|
69
69
|
|
|
70
70
|
// ─── 1. Version check
|
|
71
71
|
step('1. Install + start (one-time setup)');
|
|
72
|
-
out(
|
|
72
|
+
out(` $ npm install -g fivocell@${pkg.version}`);
|
|
73
73
|
out(' $ cell start');
|
|
74
74
|
out(' $ cell --version');
|
|
75
75
|
out('');
|
|
@@ -183,5 +183,5 @@ function mcpCall(method, params) {
|
|
|
183
183
|
|
|
184
184
|
// ─── 8. Final tagline
|
|
185
185
|
console.log();
|
|
186
|
-
banner('Cell remembers. No need to re-explain.',
|
|
186
|
+
banner('Cell remembers. No need to re-explain.', `npm install -g fivocell@${pkg.version}`);
|
|
187
187
|
})();
|