10 lines
227 B
JavaScript
Executable File
10 lines
227 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const commander = require("commander");
|
|
const program = new commander.Command();
|
|
|
|
program
|
|
.command("start feature-words", "start a new feature")
|
|
.command("end", "end a feature")
|
|
.parse(process.argv);
|