aw-ecc 1.4.31 → 1.4.32
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
CHANGED
|
@@ -55,6 +55,13 @@ module.exports = createInstallTargetAdapter({
|
|
|
55
55
|
];
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
+
// Codex home installs should only materialize Codex-owned root files.
|
|
59
|
+
// Other harness roots like .cursor/, .claude-plugin/, or .opencode/
|
|
60
|
+
// must not be copied into nested folders under ~/.codex.
|
|
61
|
+
if (sourceRelativePath.startsWith('.')) {
|
|
62
|
+
return [];
|
|
63
|
+
}
|
|
64
|
+
|
|
58
65
|
return [adapter.createScaffoldOperation(module.id, sourceRelativePath, planningInput)];
|
|
59
66
|
});
|
|
60
67
|
});
|