Bumps the prod-dependency group with 2 updates in the /sample-05 directory: @babel/runtime and commander.
Updates @babel/runtime from 7.26.10 to 7.27.0
Release notes
Sourced from @babel/runtime's releases.
v7.27.0 (2025年03月24日)
Thanks @ishchhabra and @vovkasm for your first PRs!
👓 Spec Compliance
babel-generator, babel-parser
🚀 New Feature
babel-helper-create-class-features-plugin, babel-traverse, babel-types
babel-parser, babel-types
- #17110 Add
ImportAttributes to Standardized and move its parser test fixtures (@JLHwung)
babel-generator
- #17100 fix(babel-generator): add named export of generate function (
@vovkasm)
babel-parser, babel-template
babel-plugin-transform-typescript, babel-traverse
babel-parser
babel-types
- #17162 feat(babel-types): Add support for BigInt literal conversion in valueToNode (
@ishchhabra)
🐛 Bug Fix
babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
babel-traverse
babel-helpers, babel-preset-typescript, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
- #17118 Fix: align behaviour to tsc
rewriteRelativeImportExtensions (@JLHwung)
babel-cli
babel-plugin-transform-named-capturing-groups-regex, babel-types
🏃♀️ Performance
babel-types
babel-helper-create-regexp-features-plugin
Committers: 5
Changelog
Sourced from @babel/runtime's changelog.
v7.27.0 (2025年03月24日)
👓 Spec Compliance
babel-generator, babel-parser
🚀 New Feature
babel-helper-create-class-features-plugin, babel-traverse, babel-types
babel-parser, babel-types
- #17110 Add
ImportAttributes to Standardized and move its parser test fixtures (@JLHwung)
babel-generator
- #17100 fix(babel-generator): add named export of generate function (
@vovkasm)
babel-parser, babel-template
babel-plugin-transform-typescript, babel-traverse
babel-parser
babel-types
- #17162 feat(babel-types): Add support for BigInt literal conversion in valueToNode (
@ishchhabra)
🐛 Bug Fix
babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
babel-traverse
babel-helpers, babel-preset-typescript, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
- #17118 Fix: align behaviour to tsc
rewriteRelativeImportExtensions (@JLHwung)
babel-cli
babel-plugin-transform-named-capturing-groups-regex, babel-types
🏃♀️ Performance
babel-types
babel-helper-create-regexp-features-plugin
Commits
Updates commander from 12.1.0 to 13.1.0
Release notes
Sourced from commander's releases.
v13.1.0
Added
- support a pair of long option flags to allow a memorable shortened flag, like
.option('--ws, --workspace') (#2312)
v13.0.0
Added
- support multiple calls to
.parse() with default settings (#2299)
- add
.saveStateBeforeParse() and .restoreStateBeforeParse() for use by subclasses (#2299)
- style routines like
styleTitle() to add color to help using .configureHelp() or Help subclass (#2251)
- color related support in
.configureOutput() for getOutHasColors(), getErrHasColors(), and stripColor() (#2251)
- Help property for
minWidthToWrap (#2251)
- Help methods for
displayWidth(), boxWrap(), preformatted() et al (#2251)
Changed
- Breaking: excess command-arguments cause an error by default, see migration tips (#2223)
- Breaking: throw during Option construction for unsupported option flags, like multiple characters after single
- (#2270)
- Breaking: throw on multiple calls to
.parse() if storeOptionsAsProperties: true (#2299)
- TypeScript: include implicit
this in parameters for action handler callback (#2197)
Deleted
- Breaking:
Help.wrap() refactored into formatItem() and boxWrap() (#2251)
Migration Tips
Excess command-arguments
It is now an error for the user to specify more command-arguments than are expected. (allowExcessArguments is now false by default.)
Old code:
program.option('-p, --port <number>', 'port number');
program.action((options) => {
console.log(program.args);
});
Now shows an error:
$ node example.js a b c
error: too many arguments. Expected 0 arguments but got 3.
You can declare the expected arguments. The help will then be more accurate too. Note that declaring
new arguments will change what is passed to the action handler.
... (truncated)
Changelog
Sourced from commander's changelog.
[13.1.0] (2025年01月21日)
Added
- support a pair of long option flags to allow a memorable shortened flag, like
.option('--ws, --workspace') (#2312)
[13.0.0] (2024年12月30日)
Added
- support multiple calls to
.parse() with default settings (#2299)
- add
.saveStateBeforeParse() and .restoreStateBeforeParse() for use by subclasses (#2299)
- style routines like
styleTitle() to add color to help using .configureHelp() or Help subclass (#2251)
- color related support in
.configureOutput() for getOutHasColors(), getErrHasColors(), and stripColor() (#2251)
- Help property for
minWidthToWrap (#2251)
- Help methods for
displayWidth(), boxWrap(), preformatted() et al (#2251)
Changed
- Breaking: excess command-arguments cause an error by default, see migration tips (#2223)
- Breaking: throw during Option construction for unsupported option flags, like multiple characters after single
- (#2270)
- note: support for dual long option flags added in Commander 13.1
- Breaking: throw on multiple calls to
.parse() if storeOptionsAsProperties: true (#2299)
- TypeScript: include implicit
this in parameters for action handler callback (#2197)
Deleted
- Breaking:
Help.wrap() refactored into formatItem() and boxWrap() (#2251)
Migration Tips
Excess command-arguments
It is now an error for the user to specify more command-arguments than are expected. (allowExcessArguments is now false by default.)
Old code:
program.option('-p, --port <number>', 'port number');
program.action((options) => {
console.log(program.args);
});
Now shows an error:
$ node example.js a b c
error: too many arguments. Expected 0 arguments but got 3.
... (truncated)
Commits
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase will rebase this PR
@dependabot recreate will recreate this PR, overwriting any edits that have been made to it
@dependabot merge will merge this PR after your CI passes on it
@dependabot squash and merge will squash and merge this PR after your CI passes on it
@dependabot cancel merge will cancel a previously requested merge and block automerging
@dependabot reopen will reopen this PR if it is closed
@dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
@dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
@dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
@dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
@dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
@dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
@dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
Uh oh!
There was an error while loading. Please reload this page.
Bumps the prod-dependency group with 2 updates in the /sample-05 directory: @babel/runtime and commander.
Updates
@babel/runtimefrom 7.26.10 to 7.27.0Release notes
Sourced from
@babel/runtime's releases.Changelog
Sourced from
@babel/runtime's changelog.Commits
5c350eav7.27.0ca4865aFix: align behaviour to tscrewriteRelativeImportExtensions(#17118)Updates
commanderfrom 12.1.0 to 13.1.0Release notes
Sourced from commander's releases.
... (truncated)
Changelog
Sourced from commander's changelog.
... (truncated)
Commits
e6f56c813.1.0ad3ecf0Add 13.1 to CHANGELOG (#2315)2619c99Fix example code in Readme_zh-CN.md (#2313)8263b7fAdd support for dual long options when no short option (#2312)bb733f4Reorder funding with active maintainers first (#2310)d6bcb0b13.0.0fa9e5edUpdate release datefb2c46aUpdate CHANGELOG for 13.0.0 (#2301)49423a2Add save/restore state to allow multiple calls to parse (#2299)497c11dUpdate dependencies (#2295)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions