-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
Build: Downgrade to esbuild 0.24.0 #30116
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 |
---|---|---|
|
@@ -83,7 +83,7 @@ | |
"@types/babel__traverse@npm:^7.18.0": "patch:@types/babel__traverse@npm%3A7.20.6#~/.yarn/patches/@types-babel__traverse-npm-7.20.6-fac4243243.patch", | ||
"@types/node": "^22.0.0", | ||
"@vitest/expect@npm:2.0.5": "patch:@vitest/expect@npm%3A2.0.5#~/.yarn/patches/@vitest-expect-npm-2.0.5-8933466cce.patch", | ||
"esbuild": "^0.24.0", | ||
"esbuild": "0.24.0", | ||
"playwright": "1.48.1", | ||
"playwright-core": "1.48.1", | ||
"serialize-javascript": "^3.1.0", | ||
|
@@ -185,7 +185,7 @@ | |
"cross-env": "^7.0.3", | ||
"danger": "^12.3.3", | ||
"es-toolkit": "^1.22.0", | ||
"esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0", | ||
"esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || 0.24.0", | ||
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. style: Consider keeping version range for dependencies to avoid potential conflicts with other packages requiring different esbuild versions. Pinning in resolutions should be sufficient. |
||
"esbuild-loader": "^4.2.0", | ||
"esbuild-plugin-alias": "^0.2.1", | ||
"eslint": "8.57.1", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ | |
] | ||
}, | ||
"resolutions": { | ||
"esbuild": "^0.24.0", | ||
"esbuild": "0.24.0", | ||
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. style: Pinning esbuild to exact version 0.24.0 may miss critical security patches. Consider using ~0.24.0 to allow patch updates |
||
"serialize-javascript": "^3.1.0", | ||
"type-fest": "~2.19" | ||
}, | ||
|
@@ -108,7 +108,7 @@ | |
"ejs": "^3.1.10", | ||
"ejs-lint": "^2.0.0", | ||
"es-toolkit": "^1.22.0", | ||
"esbuild": "^0.24.0", | ||
"esbuild": "0.24.0", | ||
"esbuild-plugin-alias": "^0.2.1", | ||
"eslint": "^8.57.0", | ||
"eslint-config-airbnb-typescript": "^18.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.
style: Pinning esbuild to exactly 0.24.0 instead of allowing newer patch versions could prevent getting important bug fixes. Consider using ^0.24.0 instead.