@workbench-ai/workbench-core 0.0.81 → 0.0.82

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -1769,7 +1769,7 @@ const SYNC_DIR = "sync";
1769
1769
  const TMP_DIR = "tmp";
1770
1770
  const LOGS_DIR = "logs";
1771
1771
  const LOCKS_DIR = "locks";
1772
- const STATE_TREE_RM_OPTIONS = { recursive: true, force: true, maxRetries: 5, retryDelay: 25 };
1772
+ const STATE_TREE_RM_OPTIONS = { recursive: true, force: true, maxRetries: 20, retryDelay: 100 };
1773
1773
  const PROJECT_LOCK_DIR = "project.lock";
1774
1774
  const REMOTES_FILE = "remotes.yaml";
1775
1775
  const WORKBENCH_GITIGNORE_FILE = ".gitignore";
@@ -6668,7 +6668,7 @@ async function saveState(root, state) {
6668
6668
  await writeWorkbenchRemotesFile(root, state.remotes);
6669
6669
  }
6670
6670
  finally {
6671
- await removeStateTree(tempRoot).catch(() => undefined);
6671
+ await removeStateTree(tempRoot);
6672
6672
  }
6673
6673
  });
6674
6674
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workbench-ai/workbench-core",
3
- "version": "0.0.81",
3
+ "version": "0.0.82",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/workbench-ai/workbench.git",
@@ -22,8 +22,8 @@
22
22
  ],
23
23
  "dependencies": {
24
24
  "yaml": "^2.8.2",
25
- "@workbench-ai/workbench-contract": "0.0.81",
26
- "@workbench-ai/workbench-protocol": "0.0.81"
25
+ "@workbench-ai/workbench-protocol": "0.0.82",
26
+ "@workbench-ai/workbench-contract": "0.0.82"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^24.3.1",