feat: add 'next' to alias to 'upcoming'
This commit is contained in:
parent
0d34b92358
commit
363c195477
@ -7,6 +7,8 @@ releases:
|
||||
- version: NEXT
|
||||
changes:
|
||||
- add `git-gather` command
|
||||
- type: feat
|
||||
desc: add 'next' to alias to 'upcoming'
|
||||
- version: 0.1.0
|
||||
changes:
|
||||
- port the core of the Perl changelord to JavaScript.
|
||||
|
@ -55,6 +55,11 @@ yargs(hideBin(process.argv))
|
||||
.command(cut)
|
||||
.command(schema)
|
||||
.command(upcoming)
|
||||
.command({
|
||||
...upcoming,
|
||||
command: "next",
|
||||
desc: 'alias for "upcoming"',
|
||||
})
|
||||
.command(latest)
|
||||
.command(git_gather)
|
||||
.strictCommands()
|
||||
|
@ -27,8 +27,5 @@ const handler = async (config) => {
|
||||
export default {
|
||||
command: "upcoming",
|
||||
desc: "output the changes in NEXT",
|
||||
builder: (yargs) => {
|
||||
yargs;
|
||||
},
|
||||
handler,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user