aiteam-x 0.14.2 → 0.14.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/scripts/cli.mjs +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiteam-x",
3
- "version": "0.14.2",
3
+ "version": "0.14.3",
4
4
  "description": "Pixel-art dashboard for orchestrating BMAD AI agents with Cursor ACP integration",
5
5
  "keywords": [
6
6
  "bmad",
package/scripts/cli.mjs CHANGED
@@ -188,6 +188,11 @@ async function main() {
188
188
 
189
189
  if (!empty) {
190
190
  console.log(C.bold("2. Mesclando arquivos (existentes preservados)..."));
191
+ const nextDir = path.join(absTarget, ".next");
192
+ if (fs.existsSync(nextDir)) {
193
+ fs.rmSync(nextDir, { recursive: true, force: true });
194
+ console.log(C.dim(" Cache .next removido"));
195
+ }
191
196
  copyMerge(tmpDir, absTarget);
192
197
  console.log(C.green(" ✓ Arquivos mesclados\n"));
193
198
  } else {