elsabro 6.0.0 → 6.0.1
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/bin/install.js +8 -4
- package/package.json +1 -1
package/bin/install.js
CHANGED
|
@@ -239,8 +239,8 @@ if (hasUpdate) {
|
|
|
239
239
|
console.log(` ${yellow}⚠${reset} No se pudo verificar la última versión`);
|
|
240
240
|
console.log(` ${dim}Intentando actualizar de todas formas...${reset}\n`);
|
|
241
241
|
} else if (latestVersion === pkg.version) {
|
|
242
|
-
console.log(` ${green}✓${reset}
|
|
243
|
-
|
|
242
|
+
console.log(` ${green}✓${reset} Versión actual: ${pkg.version} (ya es la última)`);
|
|
243
|
+
console.log(` ${dim}Reinstalando archivos locales...${reset}\n`);
|
|
244
244
|
} else {
|
|
245
245
|
console.log(` ${cyan}Nueva versión disponible: ${latestVersion}${reset}`);
|
|
246
246
|
console.log(` ${dim}Versión actual: ${pkg.version}${reset}\n`);
|
|
@@ -357,7 +357,9 @@ async function install() {
|
|
|
357
357
|
{ src: 'templates', dest: 'templates', name: 'Templates' },
|
|
358
358
|
{ src: 'workflows', dest: 'workflows', name: 'Workflows' },
|
|
359
359
|
{ src: 'references', dest: 'references', name: 'Referencias' },
|
|
360
|
-
{ src: 'hooks/dist', dest: 'hooks', name: 'Hooks' }
|
|
360
|
+
{ src: 'hooks/dist', dest: 'hooks', name: 'Hooks' },
|
|
361
|
+
{ src: 'flows', dest: 'flows', name: 'Flows' },
|
|
362
|
+
{ src: 'flow-engine', dest: 'flow-engine', name: 'Flow Engine' }
|
|
361
363
|
];
|
|
362
364
|
|
|
363
365
|
const failures = [];
|
|
@@ -465,7 +467,9 @@ async function uninstall() {
|
|
|
465
467
|
'skills',
|
|
466
468
|
'templates',
|
|
467
469
|
'workflows',
|
|
468
|
-
'references'
|
|
470
|
+
'references',
|
|
471
|
+
'flows',
|
|
472
|
+
'flow-engine'
|
|
469
473
|
];
|
|
470
474
|
|
|
471
475
|
for (const item of toRemove) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elsabro",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"description": "Sistema de desarrollo AI-powered para Claude Code - BMAD Method Integration, Spec-Driven Development, Party Mode, Next Step Suggestions, Stitch UI Design, Agent Teams, blocking code review, orquestación avanzada con flows declarativos",
|
|
5
5
|
"bin": {
|
|
6
6
|
"elsabro": "bin/install.js"
|