refactor: replace yargs-parser with Node.js util.parseArgs#348
Open
ilteoood wants to merge 5 commits into
Open
refactor: replace yargs-parser with Node.js util.parseArgs#348ilteoood wants to merge 5 commits into
ilteoood wants to merge 5 commits into
Conversation
Use Node.js built-in util.parseArgs instead of yargs-parser dependency. This reduces external dependencies while maintaining the same argument parsing behavior.
- Remove no- prefix boolean handling (never used) - Remove single-quote stripping (never exercised)
Tony133
approved these changes
May 27, 2026
Eomm
reviewed
May 29, 2026
…onsConfig Replace the hardcoded booleanOptions Set with a derived check from optionsConfig, and generate module.exports.argsNames dynamically by filtering optionsConfig instead of maintaining duplicate hardcoded arrays. Co-authored-by: Matteo Pietro Dazzi <matteopietro.dazzi@gmail.com>
Single pass over optionsConfig to build argsNames object. Co-authored-by: Matteo Pietro Dazzi <matteopietro.dazzi@gmail.com>
Tony133
approved these changes
May 29, 2026
Eomm
reviewed
Jun 6, 2026
Drop the normalizeArgs helper and rely on util.parseArgs clean format (--flag=value). Boolean values are still converted to native booleans by the post-processing loop, so --help=true keeps working. BREAKING CHANGE: passing boolean options as a separate value is no longer supported. Use --help=true (or just --help) instead of --help true.
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.
Summary
yargs-parserdependency with Node.js built-inutil.parseArgsTest plan