@ryuenn3123/agentic-senior-core 5.8.9 → 5.8.10
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/gemini-extension.json
CHANGED
|
@@ -155,6 +155,20 @@ async function installGlobalTarget(targetKey) {
|
|
|
155
155
|
return true;
|
|
156
156
|
}
|
|
157
157
|
|
|
158
|
+
async function copyDirRecursive(src, dest) {
|
|
159
|
+
await fs.mkdir(dest, { recursive: true });
|
|
160
|
+
const entries = await fs.readdir(src, { withFileTypes: true });
|
|
161
|
+
for (const entry of entries) {
|
|
162
|
+
const srcPath = path.join(src, entry.name);
|
|
163
|
+
const destPath = path.join(dest, entry.name);
|
|
164
|
+
if (entry.isDirectory()) {
|
|
165
|
+
await copyDirRecursive(srcPath, destPath);
|
|
166
|
+
} else {
|
|
167
|
+
await fs.copyFile(srcPath, destPath);
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
158
172
|
async function installAntigravityIde(target) {
|
|
159
173
|
const pluginSource = path.join(REPOSITORY_ROOT, target.pluginSourcePath);
|
|
160
174
|
const rulesSource = path.join(REPOSITORY_ROOT, target.rulesSourcePath);
|
package/package.json
CHANGED
package/plugin.yaml
CHANGED