UNPKG
spencer-kit-project-templates
Version:
latest (0.3.4)
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.0
0.1.1
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
spencer kit project templates
github.com/pallyoung/spencer-kit
pallyoung/spencer-kit
spencer-kit-project-templates
/
local-cli.js
10 lines
(8 loc)
•
224 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env node
var
minimist =
require
(
'minimist'
);
var
commands =
require
(
'./commands'
);
var
options =
minimist
(process.
argv
.
slice
(
2
));
function
start
(
options
){ commands.
exec
(options.
p
,options.
t
); }
start
(options)