aiteam-x 0.11.2 → 0.13.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 +3 -2
- package/scripts/cli.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aiteam-x",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "Pixel-art dashboard for orchestrating BMAD AI agents with Cursor ACP integration",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bmad",
|
|
@@ -37,8 +37,9 @@
|
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
39
|
"dev": "next dev",
|
|
40
|
+
"dev:clean": "node scripts/clean-start.mjs",
|
|
40
41
|
"aiteam": "next dev",
|
|
41
|
-
"build": "
|
|
42
|
+
"build": "node scripts/safe-build.mjs",
|
|
42
43
|
"start": "next start",
|
|
43
44
|
"lint": "next lint",
|
|
44
45
|
"test": "vitest run",
|
package/scripts/cli.mjs
CHANGED
|
@@ -136,7 +136,7 @@ async function main() {
|
|
|
136
136
|
const absTarget = path.resolve(cwd, targetDir);
|
|
137
137
|
|
|
138
138
|
console.log("\n" + C.bold(C.cyan("╔══════════════════════════════════════╗")));
|
|
139
|
-
console.log(C.bold(C.cyan("║ AITEAM-X — Instalação v0.
|
|
139
|
+
console.log(C.bold(C.cyan("║ AITEAM-X — Instalação v0.13.0 ║")));
|
|
140
140
|
console.log(C.bold(C.cyan("╚══════════════════════════════════════╝")) + "\n");
|
|
141
141
|
|
|
142
142
|
const empty = isDirEmpty(absTarget);
|