fliphub-monorepo
Version:
the builder of builders
17 lines (14 loc) • 327 B
JavaScript
let vorpal = require('vorpal')()
vorpal
.command('why [items...]', 'Shows args.')
.description('tell me whyyyaiiii')
.option('-v, --verbose', '#allthethings')
.option('--save')
.action((args, cb) => {
console.log(args)
// cb()
})
vorpal
.delimiter('🏗 💠 ➜')
// .show()
.parse(process.argv)