bmad-enhanced 1.7.0 → 1.8.0
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 +2 -1
- package/scripts/postinstall.js +14 -1
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bmad-enhanced",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
|
+
"deprecated": "This package has been renamed to convoke-agents. Run: npm install convoke-agents",
|
|
4
5
|
"description": "Vortex Pattern - Contextualize, Empathize, Synthesize, Hypothesize, Externalize, Sensitize, and Systematize streams for Lean Startup validation",
|
|
5
6
|
"main": "index.js",
|
|
6
7
|
"files": [
|
package/scripts/postinstall.js
CHANGED
|
@@ -19,8 +19,21 @@ const YELLOW = '\x1b[33m';
|
|
|
19
19
|
const RED = '\x1b[31m';
|
|
20
20
|
|
|
21
21
|
async function main() {
|
|
22
|
+
// Deprecation banner
|
|
22
23
|
console.log('');
|
|
23
|
-
console.log(`${BOLD}
|
|
24
|
+
console.log(`${YELLOW}${BOLD}╔══════════════════════════════════════════════════════════════╗${RESET}`);
|
|
25
|
+
console.log(`${YELLOW}${BOLD}║ ║${RESET}`);
|
|
26
|
+
console.log(`${YELLOW}${BOLD}║ ⚠ PACKAGE RENAMED ║${RESET}`);
|
|
27
|
+
console.log(`${YELLOW}${BOLD}║ ║${RESET}`);
|
|
28
|
+
console.log(`${YELLOW}${BOLD}║ bmad-enhanced has been renamed to convoke-agents ║${RESET}`);
|
|
29
|
+
console.log(`${YELLOW}${BOLD}║ ║${RESET}`);
|
|
30
|
+
console.log(`${YELLOW}${BOLD}║ To migrate, run: ║${RESET}`);
|
|
31
|
+
console.log(`${YELLOW}${BOLD}║ npm install convoke-agents ║${RESET}`);
|
|
32
|
+
console.log(`${YELLOW}${BOLD}║ ║${RESET}`);
|
|
33
|
+
console.log(`${YELLOW}${BOLD}║ Your _bmad/ and _bmad-output/ data is fully preserved. ║${RESET}`);
|
|
34
|
+
console.log(`${YELLOW}${BOLD}║ No data loss occurs during migration. ║${RESET}`);
|
|
35
|
+
console.log(`${YELLOW}${BOLD}║ ║${RESET}`);
|
|
36
|
+
console.log(`${YELLOW}${BOLD}╚══════════════════════════════════════════════════════════════╝${RESET}`);
|
|
24
37
|
console.log('');
|
|
25
38
|
|
|
26
39
|
// If update system available, check for upgrades
|