-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop minimist in favor of util.parseArgs
Also refactor the cli utility. **CLI Changes** - The double dash between args and positionals is no longer required, though still recommended. - Now we handle every positional as input as opposed to only the first. This means you can omit quoting the input However repeated whitespace is not perserved this way, so quoting is still recommended. **Breaking Changes** - CLI will now fail with a message on unrecognized option.
- Loading branch information
Showing
3 changed files
with
93 additions
and
37 deletions.
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,8 +89,5 @@ | |
"prettier": "3.0.3", | ||
"rollup": "^4.3.0", | ||
"typescript": "^5.2.2" | ||
}, | ||
"dependencies": { | ||
"minimist": "^1.2.8" | ||
} | ||
} |