Skip to content
This repository was archived by the owner on May 5, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/install-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ runs:
steps:
- uses: pnpm/action-setup@v4
with:
version: 10.25.0
version: 10.33.3
- uses: actions/setup-node@v4
with:
node-version: ${{ inputs.node-version }}
Expand Down
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
4 changes: 2 additions & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineConfig, globalIgnores } from "eslint/config";
import typescriptEslint from "@typescript-eslint/eslint-plugin";
import vitest from "eslint-plugin-vitest";
import vitest from "@vitest/eslint-plugin";
import nodePlugin from "eslint-plugin-n";
import tsParser from "@typescript-eslint/parser";
import path from "node:path";
Expand Down Expand Up @@ -35,7 +35,7 @@ export default defineConfig([

languageOptions: {
parser: tsParser,
ecmaVersion: 2018,
ecmaVersion: "latest",
Comment thread
stevendborrelli marked this conversation as resolved.
sourceType: "script"
},

Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,34 +32,34 @@
"*.{js,ts,cjs,mjs}": "eslint --fix"
},
"engines": {
"node": ">=14",
"pnpm": ">=10.25.0"
"node": ">=24",
"pnpm": ">=10.33.3"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@octokit/rest": "^22.0.1",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@octokit/auth-token": "^6.0.0",
"@octokit/rest": "^22.0.1",
"@tsconfig/node14": "^1.0.3",
"@types/node": "^25.0.0",
"@types/yargs": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"@typescript-eslint/utils": "^8.49.0",
"eslint": "^9.39.1",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"@typescript-eslint/utils": "^8.59.2",
"@vitest/eslint-plugin": "^1.6.16",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vitest": "^0.5.4",
"execa": "^9.6.1",
"fast-glob": "^3.2.12",
"human-id": "^4.1.3",
"husky": "^9.1.7",
"jest-extended": "^7.0.0",
"lint-staged": "^16.2.7",
"npm-run-all": "^4.1.5",
"npm-run-all2": "^8.0.4",
"prettier": "^3.7.4",
"syncpack": "^13.0.4",
"ts-node": "^10.9.2",
Expand Down Expand Up @@ -97,5 +97,5 @@
}
]
},
"packageManager": "pnpm@10.25.0"
"packageManager": "pnpm@10.33.3"
}
Loading
Loading