Skip to content

Commit bbbb088

Browse files
authored
Upgrade bun and @types/bun to 1.3.13 and consolidate to root-level dependency (#202)
### Why Upgrades Bun from 1.3.11 to 1.3.13 across the monorepo. ### Details `@types/bun` is now declared only at the root workspace level rather than duplicated across individual packages (`brand`, `common`, `core`, `cli`, and the adapter packages). This eliminates the version fragmentation where some packages were pinned to 1.3.10 and others to 1.3.11, consolidating everything to a single 1.3.13 declaration. ### Verification CI <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Low risk lockfile/tooling update: bumps Bun and TypeScript typings and removes per-package `@types/bun` declarations, with no runtime logic changes. Main risk is CI/build differences due to the Bun/type upgrade and dependency consolidation. > > **Overview** > Upgrades the repo’s Bun toolchain to `1.3.13` (updates `mise.toml`, root `packageManager`, and `bun.lock`), including `@types/bun`/`bun-types` to `1.3.13`. > > Consolidates Bun typings to the root workspace by removing duplicated `@types/bun` devDependencies from individual packages (e.g., `core`, `common`, `cli`, `brand`, and adapter packages), and drops lockfile entries that existed only for those package-scoped installs. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit c5f8e1d. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent b64f469 commit bbbb088

10 files changed

Lines changed: 6 additions & 60 deletions

File tree

bun.lock

Lines changed: 3 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
TURBO_TEAM = "facets"
33

44
[tools]
5-
bun = "1.3.11"
5+
bun = "1.3.13"
66
node = "24.14.1"
77
lefthook = "2.1.4"
88
gh = "2.89.0"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://json.schemastore.org/package.json",
33
"private": true,
44
"type": "module",
5-
"packageManager": "bun@1.3.11",
5+
"packageManager": "bun@1.3.13",
66
"workspaces": {
77
"packages": [
88
"packages/*",
@@ -37,7 +37,7 @@
3737
"@changesets/release-utils": "0.2.7",
3838
"@fission-ai/openspec": "1.3.0",
3939
"@octokit/auth-app": "8.2.0",
40-
"@types/bun": "1.3.11",
40+
"@types/bun": "1.3.13",
4141
"@types/node": "24.12.2",
4242
"dedent": "1.7.2",
4343
"mint": "4.2.521",

packages/adapters/claude-code/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
},
2323
"devDependencies": {
2424
"@agent-facets/adapter": "workspace:*",
25-
"@types/bun": "1.3.11",
2625
"arktype": "2.2.0",
2726
"tsdown": "^0.21.9",
2827
"typescript": "^6.0.3"

packages/adapters/codex/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
},
2323
"devDependencies": {
2424
"@agent-facets/adapter": "workspace:*",
25-
"@types/bun": "1.3.11",
2625
"tsdown": "^0.21.9",
2726
"typescript": "^6.0.3"
2827
},

packages/adapters/opencode/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
},
2323
"devDependencies": {
2424
"@agent-facets/adapter": "workspace:*",
25-
"@types/bun": "1.3.11",
2625
"arktype": "2.2.0",
2726
"tsdown": "^0.21.9",
2827
"typescript": "^6.0.3"

packages/brand/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
"types": "tsc --noEmit",
2222
"test": "bun test"
2323
},
24-
"devDependencies": {
25-
"@types/bun": "1.3.10"
26-
},
2724
"peerDependencies": {
2825
"typescript": "^5 || ^6"
2926
},

packages/cli/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
"@agent-facets/core": "workspace:*",
3838
"@agent-facets/adapter": "workspace:*",
3939
"@agent-facets/adapter-opencode": "workspace:*",
40-
"@types/bun": "1.3.10",
4140
"ink-testing-library": "4.0.0"
4241
},
4342
"peerDependencies": {

packages/common/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,5 @@
88
"scripts": {
99
"types": "tsc --noEmit",
1010
"test": "bun test"
11-
},
12-
"devDependencies": {
13-
"@types/bun": "1.3.10"
1411
}
1512
}

packages/core/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
"devDependencies": {
3030
"@agent-facets/common": "workspace:*",
3131
"@agent-facets/adapter": "workspace:*",
32-
"@types/bun": "1.3.10",
3332
"tsdown": "^0.21.9",
3433
"typescript": "^6.0.3"
3534
},

0 commit comments

Comments
 (0)