@abhijithvijayan/portfolio
Version:
CLI to use my portfolio site as a template to build yours!
39 lines (33 loc) • 672 B
JavaScript
const meow = require('meow');
const cli = meow(
`
Usage
$ @abhijithvijayan/portfolio [input] [options]
Input
generate Bootstraps the portfolio template
serve Serves the portfolio template locally
deploy Creates a travis config file to deploy to GitHub Pages
Options
-v, --version Show the version and exit with code 0
Examples
$ @abhijithvijayan/portfolio generate
`,
{
flags: {
generate: {
type: 'string',
},
serve: {
type: 'string',
},
deploy: {
type: 'string',
},
version: {
type: 'boolean',
alias: 'v',
},
},
}
);
module.exports = cli;