multi-agents-cli 1.0.11 → 1.0.12
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/init.js +2 -0
- package/package.json +1 -1
package/init.js
CHANGED
|
@@ -812,6 +812,8 @@ const main = async () => {
|
|
|
812
812
|
copyDir(path.join(TEMPLATES, 'shared'), path.join(ROOT, 'shared'));
|
|
813
813
|
if (backendType === 'separate') {
|
|
814
814
|
copyDir(path.join(TEMPLATES, 'backend'), path.join(ROOT, 'backend'));
|
|
815
|
+
// Ensure backend/ is tracked by git even before the API agent scaffolds
|
|
816
|
+
fs.writeFileSync(path.join(ROOT, 'backend', '.gitkeep'), '', 'utf8');
|
|
815
817
|
}
|
|
816
818
|
fs.copyFileSync(path.join(TEMPLATES, 'CLAUDE.md'), path.join(ROOT, 'CLAUDE.md'));
|
|
817
819
|
fs.copyFileSync(path.join(TEMPLATES, 'CONTRACTS.md'), path.join(ROOT, 'CONTRACTS.md'));
|
package/package.json
CHANGED