WIP - add extractor, generate snippet_data
This commit is contained in:
26
node_modules/ltcdr/examples/pm
generated
vendored
Executable file
26
node_modules/ltcdr/examples/pm
generated
vendored
Executable file
@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
var program = require('..');
|
||||
|
||||
program
|
||||
.version('0.0.1')
|
||||
.command('install [name]', 'install one or more packages')
|
||||
.command('search [query]', 'search with optional query')
|
||||
.command('list', 'list packages installed')
|
||||
.parse(process.argv);
|
||||
|
||||
// here .command() is invoked with a description,
|
||||
// and no .action(callback) calls to handle sub-commands.
|
||||
// this tells commander that you're going to use separate
|
||||
// executables for sub-commands, much like git(1) and other
|
||||
// popular tools.
|
||||
|
||||
// here only ./pm-install(1) is implemented, however you
|
||||
// would define ./pm-search(1) and ./pm-list(1) etc.
|
||||
|
||||
// Try the following:
|
||||
// ./examples/pm
|
||||
// ./examples/pm help install
|
||||
// ./examples/pm install -h
|
||||
// ./examples/pm install foo bar baz
|
||||
// ./examples/pm install foo bar baz --force
|
||||
Reference in New Issue
Block a user