ma-agents 3.4.6 → 3.4.7
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/lib/bmad.js +4 -1
- package/package.json +1 -1
package/lib/bmad.js
CHANGED
|
@@ -263,9 +263,12 @@ async function updateBmad(modules = ['bmm', 'bmb'], tools = [], projectRoot = pr
|
|
|
263
263
|
}
|
|
264
264
|
}
|
|
265
265
|
|
|
266
|
-
// 3. Remove physical directories so bmad-method
|
|
266
|
+
// 3. Remove physical directories so bmad-method's manifest-generator
|
|
267
|
+
// doesn't re-discover them via scanInstalledModules().
|
|
268
|
+
// _bmad/custom/ is safe to remove — applyCustomizations() recreates it after.
|
|
267
269
|
const staleDirs = [
|
|
268
270
|
path.join(projectRoot, BMAD_DIR, 'bmb'),
|
|
271
|
+
path.join(projectRoot, BMAD_DIR, 'custom'),
|
|
269
272
|
path.join(projectRoot, BMAD_DIR, '_config', 'custom'),
|
|
270
273
|
];
|
|
271
274
|
for (const dir of staleDirs) {
|