hyper-pokemon-cli
Version:
🌈👾 cli to choose your hyper-pokemon theme from your terminal
28 lines (20 loc) • 485 B
JavaScript
const meow = require('meow');
const hyperPokemon = require('./hyper-pokemon-cli');
const cli = meow(`
Usage
$ hyper-pokemon <input>
Options
--random, -r Set random pokemon
Examples
$ hyper-pokemon
Select from the list of available pokemon themes
$ hyper-pokemon --random
Set a random theme from the list of available themes
`, {
alias: {
r: 'random'
}
});
hyperPokemon(cli.input, cli.flags);
;