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