ag-toolkit 0.4.0 → 0.4.1

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/git.js +1 -1
  2. package/package.json +2 -2
package/dist/git.js CHANGED
@@ -22,7 +22,7 @@ export class GitOperations {
22
22
  return status.isClean();
23
23
  }
24
24
  async fetchAll() {
25
- await this.git.fetch(["--all"]);
25
+ await this.git.fetch(["--all", "--prune"]);
26
26
  }
27
27
  async getBranchInfos(options = {}) {
28
28
  const includeRemote = options.includeRemote === true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ag-toolkit",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Shared library for agbd and agrb",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -43,7 +43,7 @@
43
43
  "@biomejs/biome": "2.3.11",
44
44
  "@sindresorhus/tsconfig": "8.1.0",
45
45
  "@types/bun": "1.3.5",
46
- "@types/react": "19.2.7",
46
+ "@types/react": "19.2.8",
47
47
  "chalk": "5.6.2",
48
48
  "ink-testing-library": "4.0.0",
49
49
  "ts-node": "10.9.2",