Skip to content

Feature/dependency updates#9

Merged
cs-util merged 7 commits into
mainfrom
feature/dependencyUpdates
Oct 13, 2025
Merged

Feature/dependency updates#9
cs-util merged 7 commits into
mainfrom
feature/dependencyUpdates

Conversation

@cs-util
Copy link
Copy Markdown
Owner

@cs-util cs-util commented Oct 12, 2025

This pull request focuses on improving dependency management practices and updating development tooling. The most significant changes include updating several devDependencies to their latest versions, adding a new dependency, and enhancing the formatting workflow to include package.json. Additionally, the development documentation now emphasizes routine dependency checks.

Dependency management and updates:

  • Updated multiple devDependencies in package.json to newer versions, including @babel/core, @babel/preset-env, @eslint/js, @stryker-mutator/core, @stryker-mutator/jest-runner, babel-jest, dependency-cruiser, eslint, fast-check, globals, and jest-environment-jsdom.
  • Added tailwindcss as a new devDependency in package.json.
  • Improved documentation in AGENTS.md to recommend running npm outdated regularly and keeping dependencies up to date, with guidance on handling exceptions.

Development workflow improvements:

  • Updated the format script in package.json to include package.json itself in Prettier formatting, ensuring consistent formatting for the dependency file.

- Upgraded @babel/core from ^7.27.4 to ^7.28.4
- Upgraded @babel/preset-env from ^7.27.2 to ^7.28.3
- Upgraded @eslint/js from ^9.33.0 to ^9.37.0
- Upgraded @stryker-mutator/core from ^9.0.1 to ^9.2.0
- Upgraded @stryker-mutator/jest-runner from ^9.0.1 to ^9.2.0
- Upgraded babel-jest from ^30.0.0-beta.3 to ^30.2.0
- Upgraded dependency-cruiser from ^17.0.1 to ^17.0.2
- Upgraded eslint from ^9.33.0 to ^9.37.0
- Upgraded fast-check from ^4.2.0 to ^4.3.0
- Upgraded globals from ^16.3.0 to ^16.4.0
- Upgraded jest-environment-jsdom from ^30.0.5 to ^30.2.0
@gemini-code-assist
Copy link
Copy Markdown

Summary of Changes

Hello @cs-util, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request focuses on enhancing the project's dependency management and development tooling. It updates a range of development dependencies to their latest versions, introduces a new dependency for styling, and refines the code formatting workflow to ensure consistency across configuration files. Additionally, it reinforces best practices for maintaining dependency health and security through updated development documentation.

Highlights

  • Dependency Updates: Several devDependencies in package.json have been updated to their latest versions, including @babel/core, @eslint/js, @stryker-mutator/core, babel-jest, dependency-cruiser, eslint, fast-check, globals, and jest-environment-jsdom.
  • New Dependency Added: tailwindcss has been added as a new devDependency to package.json.
  • Formatting Workflow Improvement: The format script in package.json now includes package.json itself, ensuring consistent Prettier formatting for the dependency file.
  • Documentation Update: The AGENTS.md file has been updated to include recommendations for routine dependency checks using npm outdated and npm audit, along with guidance on handling exceptions.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request updates several development dependencies to their latest versions, adds tailwindcss, and improves the development workflow by including package.json in the formatting script and updating the development guidelines in AGENTS.md. The changes are well-described and improve the project's dependency management. My main feedback is to sort the devDependencies in package.json alphabetically to enhance maintainability, which aligns with the goal of improving the project's formatting standards.

Comment thread package.json
Comment on lines +28 to 46
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@eslint/js": "^9.37.0",
"@playwright/test": "^1.49.0",
"@stryker-mutator/core": "^9.0.1",
"@stryker-mutator/jest-runner": "^9.0.1",
"babel-jest": "^30.0.0-beta.3",
"dependency-cruiser": "^17.0.1",
"eslint": "^9.33.0",
"@stryker-mutator/core": "^9.2.0",
"@stryker-mutator/jest-runner": "^9.2.0",
"babel-jest": "^30.2.0",
"dependency-cruiser": "^17.0.2",
"eslint": "^9.37.0",
"eslint-plugin-jest": "^29.0.1",
"fast-check": "^4.2.0",
"globals": "^16.3.0",
"fast-check": "^4.3.0",
"globals": "^16.4.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.5",
"jest-environment-jsdom": "^30.2.0",
"jscpd": "^4.0.5",
"madge": "^8.0.0",
"tailwindcss": "^4.1.14",
"prettier": "^3.3.3",
"serve": "^14.2.1"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

To improve maintainability and make it easier to find dependencies, it's a good practice to keep them alphabetically sorted. Since you've added prettier formatting for package.json, this would be a good opportunity to sort this list.

Suggested change
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@eslint/js": "^9.37.0",
"@playwright/test": "^1.49.0",
"@stryker-mutator/core": "^9.0.1",
"@stryker-mutator/jest-runner": "^9.0.1",
"babel-jest": "^30.0.0-beta.3",
"dependency-cruiser": "^17.0.1",
"eslint": "^9.33.0",
"@stryker-mutator/core": "^9.2.0",
"@stryker-mutator/jest-runner": "^9.2.0",
"babel-jest": "^30.2.0",
"dependency-cruiser": "^17.0.2",
"eslint": "^9.37.0",
"eslint-plugin-jest": "^29.0.1",
"fast-check": "^4.2.0",
"globals": "^16.3.0",
"fast-check": "^4.3.0",
"globals": "^16.4.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.5",
"jest-environment-jsdom": "^30.2.0",
"jscpd": "^4.0.5",
"madge": "^8.0.0",
"tailwindcss": "^4.1.14",
"prettier": "^3.3.3",
"serve": "^14.2.1"
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@eslint/js": "^9.37.0",
"@playwright/test": "^1.49.0",
"@stryker-mutator/core": "^9.2.0",
"@stryker-mutator/jest-runner": "^9.2.0",
"babel-jest": "^30.2.0",
"dependency-cruiser": "^17.0.2",
"eslint": "^9.37.0",
"eslint-plugin-jest": "^29.0.1",
"fast-check": "^4.3.0",
"globals": "^16.4.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.2.0",
"jscpd": "^4.0.5",
"madge": "^8.0.0",
"prettier": "^3.3.3",
"serve": "^14.2.1",
"tailwindcss": "^4.1.14"

…ctoring coveredMutants and only calculating the mutation score when that count is positive. This avoids dividing by zero when every mutant is marked NoCoverage
@cs-util cs-util merged commit 23e6b3b into main Oct 13, 2025
6 checks passed
@cs-util cs-util deleted the feature/dependencyUpdates branch October 13, 2025 21:00
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