Skip to content

Commit e6a0271

Browse files
committed
fix: restore missing @types/node devDependency, bump to ^26
- @types/node was accidentally dropped from root package.json during the main rebase (packages/linting/* rely on typescript's shared "types": ["node"] tsconfig setting and broke CI: TS2688 cannot find type definition file for 'node') - Bumped to ^26 via 'pnpm upgrade -r' to match node-setup's default Node 26 and align index-docs.yml/agent-context.yml, which were still pinned to Node 24
1 parent 362aaf7 commit e6a0271

4 files changed

Lines changed: 497 additions & 303 deletions

File tree

.github/workflows/agent-context.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- uses: actions/setup-node@v7
3131
with:
32-
node-version: 24
32+
node-version: 26
3333

3434
# Reads manifests directly — no dependency install needed.
3535
- name: Verify agent context

.github/workflows/index-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Setup Node.js
5151
uses: actions/setup-node@v7
5252
with:
53-
node-version: 24
53+
node-version: 26
5454

5555
- name: Install dependencies
5656
run: pnpm install

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
"@biomejs/biome": "2.5.8",
7373
"@changesets/changelog-github": "^1.0.0",
7474
"@changesets/cli": "^3.0.0",
75+
"@types/node": "^26.2.0",
7576
"happy-dom": "^20.8.4",
7677
"tslib": "^2.6.1",
7778
"turbo": "^2.5.6",

0 commit comments

Comments
 (0)