Skip to content

Conversation

timea-solid
Copy link
Member

@timea-solid timea-solid commented Aug 2, 2025

@timea-solid timea-solid changed the title updated dep updated dependencies & fix vulnerabilities Aug 2, 2025
@timea-solid timea-solid requested a review from Copilot August 19, 2025 14:58
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.js to new flat config format in eslint.config.js
  • Added ESLint disable comments to suppress TypeScript warnings for intentionally unused variables and any types

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" })
Copy link
Preview

Copilot AI Aug 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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" });

Copilot uses AI. Check for mistakes.

@timea-solid timea-solid merged commit b33811e into main Aug 19, 2025
10 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant