preact-material-components
Version:
preact wrapper for "Material Components for the web"
16 lines (11 loc) • 423 B
JavaScript
const green = text => `\x1b[32m${text}\x1b[0m`
module.exports = () => {
const usage = `\n Usage: ${green('micro')} [path] [options]
Options:
${green('-p, --port <n>')} Port to listen on (defaults to 3000)
${green('-H, --host')} The host on which micro will run
${green('-v, --version')} Output the version number
${green('-h, --help')} Show this usage information
`
return usage
}