Skip to content

Commit 793b421

Browse files
dependabot[bot]chrisreddingtonCopilot
authored
chore(deps-dev): bump the npm-development group with 2 updates (#145)
* chore(deps-dev): bump the npm-development group with 2 updates Bumps the npm-development group with 2 updates: [typescript](https://github.com/microsoft/TypeScript) and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `typescript` from 5.9.3 to 6.0.2 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v5.9.3...v6.0.2) Updates `vite` from 6.4.2 to 8.0.8 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v8.0.8/packages/vite) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.2 dependency-type: direct:development update-type: version-update:semver-major dependency-group: npm-development - dependency-name: vite dependency-version: 8.0.8 dependency-type: direct:development update-type: version-update:semver-major dependency-group: npm-development ... Signed-off-by: dependabot[bot] <support@github.com> * fix: add rootDir and types for TypeScript 6.0 compatibility in linters tsconfig TypeScript 6.0 introduced stricter rootDir enforcement and no longer auto-discovers @types/node. Add explicit rootDir pointing to the repo root (since the tsconfig includes files from both src/ and __tests__ outside the .github/linters/ directory) and explicit types: ["node"] to satisfy both requirements. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * fix: bump Node.js to 22.12.0 for rolldown native binding compatibility The @rolldown/binding-linux-x64-gnu package (required by Vitest 4.x) requires Node >=22.12.0. Node 22.11.0 did not satisfy this constraint, causing npm to skip the optional binding during installation. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Chris Reddington <791642+chrisreddington@users.noreply.github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 8456dde commit 793b421

4 files changed

Lines changed: 702 additions & 522 deletions

File tree

.github/linters/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"$schema": "https://json.schemastore.org/tsconfig",
33
"extends": "../../tsconfig.json",
44
"compilerOptions": {
5-
"noEmit": true
5+
"noEmit": true,
6+
"rootDir": "../../",
7+
"types": ["node"]
68
},
79
"include": ["../../__tests__/**/*", "../../src/**/*"],
810
"exclude": ["../../dist", "../../node_modules", "../../coverage", "*.json"]

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.11.0
1+
22.12.0

0 commit comments

Comments
 (0)