-
Notifications
You must be signed in to change notification settings - Fork 11.9k
build: update all non-major dependencies (main) #32920
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -67,7 +67,7 @@ | |
| "@rollup/plugin-commonjs": "^29.0.0", | ||
| "@rollup/plugin-json": "^6.1.0", | ||
| "@rollup/plugin-node-resolve": "16.0.3", | ||
| "@rollup/wasm-node": "4.60.0", | ||
| "@rollup/wasm-node": "4.60.1", | ||
| "@stylistic/eslint-plugin": "^5.0.0", | ||
| "@tony.ganchev/eslint-plugin-header": "~3.3.1", | ||
| "@types/babel__core": "7.20.5", | ||
|
|
@@ -92,8 +92,8 @@ | |
| "@types/yargs": "^17.0.20", | ||
| "@types/yargs-parser": "^21.0.0", | ||
| "@types/yarnpkg__lockfile": "^1.1.5", | ||
| "@typescript-eslint/eslint-plugin": "8.57.2", | ||
| "@typescript-eslint/parser": "8.57.2", | ||
| "@typescript-eslint/eslint-plugin": "8.58.0", | ||
| "@typescript-eslint/parser": "8.58.0", | ||
| "ajv": "8.18.0", | ||
| "buffer": "6.0.3", | ||
| "esbuild": "0.27.3", | ||
|
|
@@ -122,15 +122,15 @@ | |
| "prettier": "^3.0.0", | ||
| "puppeteer": "24.40.0", | ||
| "quicktype-core": "23.2.6", | ||
| "rollup": "4.60.0", | ||
| "rollup": "4.60.1", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. While |
||
| "rollup-license-plugin": "~3.2.0", | ||
| "rollup-plugin-dts": "6.4.1", | ||
| "rollup-plugin-sourcemaps2": "0.5.6", | ||
| "semver": "7.7.4", | ||
| "source-map-support": "0.5.21", | ||
| "tslib": "2.8.1", | ||
| "typescript": "6.0.2", | ||
| "undici": "7.24.6", | ||
| "undici": "7.24.7", | ||
| "unenv": "^1.10.0", | ||
| "verdaccio": "6.3.2", | ||
| "verdaccio-auth-memory": "^10.0.0", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
pnpm-lock.yamlfile indicates that version8.57.2of several@typescript-eslintpackages (such as@typescript-eslint/types) is still being retained in the dependency graph alongside the new8.58.0version. To avoid dependency duplication and ensure consistent linting behavior across the monorepo, it is recommended to synchronize these versions. Note that updating to8.58.0is particularly important here as it expands the supported TypeScript peer dependency range to<6.1.0, which correctly accommodates the6.0.2version currently specified in the lockfile (which was technically a violation of the8.57.2constraint of<6.0.0).