make yargs strict for commands

This commit is contained in:
Yanick Champoux 2023-05-10 19:15:29 -04:00
parent 385c09896a
commit 13f443b61c

View File

@ -29,5 +29,6 @@ yargs(hideBin(process.argv))
.command(cut) .command(cut)
.command(print) .command(print)
.command(upcoming) .command(upcoming)
.strictCommands()
.help() .help()
.parse(); .parse();