Problem/Motivation
Current Node.js can parse command-line arguments with util.parseArgs().
/core/scripts/css/postcss-build.js uses minimist library to parse arguments but command-line arguments uses only for specific file building or script checking flag. I think Node.js native function seems to be enough for Drupal core.
Proposed resolution
Remove minimist from devDependencies in /core/package.json and use Node.js native util.parseArgs().
Note:
The minimist library is not removed from node_modules directory at this point because other libraries require minimist as a dependency.
Remaining tasks
User interface changes
No.
API changes
No.
Data model changes
No.
Release notes snippet
No.