Conversation
- Changed package.json to set "type" to "module" and updated main entry point. - Replaced "nyc" with "c8" for test coverage in scripts. - Refactored test files to use ES module syntax (import/export). - Updated all instances of the issue parser to use the new import. - Added new dependencies and removed deprecated ones.
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
gr2m
approved these changes
Aug 14, 2026
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.
This pull request modernizes the codebase by migrating it to ES modules, updates Node.js version support, and improves developer tooling and documentation. The changes include converting
require/module.exportstoimport/export, updating Node.js versions in configs, replacing code style and coverage tools, and updating documentation to reflect the new module syntax.require/module.exportsto ES moduleimport/exportsyntax inindex.jsandlib/hosts-config.js, and set"type": "module"inpackage.jsonto enable ES modules..github/workflows/test.yml,.nvmrc, andpackage.jsonto require Node.js 22.22.2 and 24.x, dropping support for older versions.nyctoc8for code coverage, replacedxowithprettierfor code formatting, and updated related scripts inpackage.json.README.mdfrom CommonJSrequireto ES moduleimportsyntax to match the codebase changes.BREAKING CHANGE:
issue-parseris now a native ES Module.BREAKING CHANGE: Now require Node.js versions
^22.22.2or>=24.15