allagents 0.5.2 → 0.5.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.
- package/dist/index.js +4 -2
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -20581,7 +20581,9 @@ async function selectivePurgeWorkspace(workspacePath, state, clients) {
|
|
|
20581
20581
|
return [];
|
|
20582
20582
|
}
|
|
20583
20583
|
const result = [];
|
|
20584
|
-
|
|
20584
|
+
const previousClients = Object.keys(state.files);
|
|
20585
|
+
const clientsToProcess = [...new Set([...clients, ...previousClients])];
|
|
20586
|
+
for (const client of clientsToProcess) {
|
|
20585
20587
|
const previousFiles = getPreviouslySyncedFiles(state, client);
|
|
20586
20588
|
const purgedPaths = [];
|
|
20587
20589
|
for (const filePath of previousFiles) {
|
|
@@ -21010,7 +21012,7 @@ ${fileValidationErrors.map((e) => ` - ${e}`).join(`
|
|
|
21010
21012
|
}
|
|
21011
21013
|
}
|
|
21012
21014
|
const hasFailures = pluginResults.some((r) => !r.success) || totalFailed > 0;
|
|
21013
|
-
if (!
|
|
21015
|
+
if (!dryRun) {
|
|
21014
21016
|
const allCopyResults = [
|
|
21015
21017
|
...pluginResults.flatMap((r) => r.copyResults),
|
|
21016
21018
|
...workspaceFileResults
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "allagents",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
"format": "biome format --write src",
|
|
25
25
|
"check": "biome check src",
|
|
26
26
|
"check:fix": "biome check --write src",
|
|
27
|
-
"prepare": "bun run build && (test -d .git && bunx prek install -t pre-push || true)"
|
|
27
|
+
"prepare": "bun run build && (test -d .git && bunx prek install -t pre-push || true)",
|
|
28
|
+
"release": "bun run scripts/release.ts"
|
|
28
29
|
},
|
|
29
30
|
"keywords": [
|
|
30
31
|
"cli",
|