updated dependencies & fix vulnerabilities#84
Merged
timea-solid merged 2 commits intomainfrom Aug 19, 2025
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR updates dependencies to fix vulnerabilities and migrate to newer versions: ESLint v8 → v9, Jest v29 → v30, and updated Babel plugins. The migration includes adopting the new ESLint flat config format and addressing TypeScript linting issues that arose from the updated rules.
- Updated major dependencies (ESLint, Jest, TypeScript ESLint plugins) and Babel plugins to newer versions
- Migrated ESLint configuration from legacy
.eslintrc.jsto new flat config format ineslint.config.js - Added ESLint disable comments to suppress TypeScript warnings for intentionally unused variables and
anytypes
Reviewed Changes
Copilot reviewed 13 out of 14 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| package.json | Updated dependency versions for ESLint, Jest, TypeScript tooling, and Babel plugins |
| eslint.config.js | New ESLint flat configuration file replacing legacy format |
| .eslintrc.js | Removed legacy ESLint configuration file |
| .babelrc | Updated Babel plugin names from proposal to transform variants |
| Multiple TypeScript files | Added ESLint disable comments for unused variables and any types |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| } | ||
| const nodeToStringHere = containerNode.value; | ||
| return store.fetcher._fetch(nodeToStringHere, { method: "DELETE" }); | ||
| return store.fetcher._fetch(nodeToStringHere, { method: "DELETE" }) |
There was a problem hiding this comment.
Missing semicolon at the end of the return statement. This change removes the semicolon that was present in the original code.
Suggested change
| return store.fetcher._fetch(nodeToStringHere, { method: "DELETE" }) | |
| return store.fetcher._fetch(nodeToStringHere, { method: "DELETE" }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.