-
Notifications
You must be signed in to change notification settings - Fork 14
deps(extension)(deps-dev): bump @typescript-eslint/parser from 5.62.0 to 8.49.0 in /chartsmith-extension #149
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -114,7 +114,7 @@ | |
| "@types/vscode": "^1.80.0", | ||
| "@types/ws": "^8.5.5", | ||
| "@typescript-eslint/eslint-plugin": "^5.59.8", | ||
| "@typescript-eslint/parser": "^5.59.8", | ||
| "@typescript-eslint/parser": "^8.49.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. Bug: ESLint version doesn't meet parser peer dependency requirementsThe upgraded Additional Locations (1) |
||
| "@vscode/test-electron": "^2.3.2", | ||
| "@vscode/vsce": "^2.19.0", | ||
| "eslint": "^8.41.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.
Bug: Incompatible major version mismatch between typescript-eslint packages
Upgrading
@typescript-eslint/parserto v8.49.0 while keeping@typescript-eslint/eslint-pluginat v5.x creates a peer dependency conflict. The plugin explicitly requires@typescript-eslint/parser: "^5.0.0"as a peer dependency. These packages are designed to work together at the same major version and mixing v5 and v8 will cause npm warnings and likely runtime errors or unexpected linting behavior. Both packages need to be upgraded together to the same major version.Additional Locations (1)
chartsmith-extension/package.json#L115-L116