mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-03-28 11:50:29 +00:00
15 lines
236 B
JavaScript
Executable file
15 lines
236 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
var cli = require('yargs');
|
|
|
|
cli
|
|
.usage('Usage: $0 <command> [options]')
|
|
.help('help');
|
|
|
|
cli
|
|
.command(
|
|
'component <name>',
|
|
'scaffold out a wagtail component',
|
|
require('./component'));
|
|
|
|
cli
|
|
.argv;
|