UNPKG
tb-cli
Version:
latest (2.1.3)
2.1.3
2.1.2
2.1.1
2.1.0
2.0.0
1.0.2
1.0.1
1.0.0
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
A simple CLI for scaffolding TB.
github.com/TB-blog/TB-CLI
TB-blog/TB-CLI
tb-cli
/
bin
/
tb.js
9 lines
(7 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
#!/usr/bin/env node
require
(
'commander'
) .
version
(
require
(
'../package'
).
version
) .
usage
(
'<command> [options]'
) .
command
(
'init'
,
'generate a new project from TB template'
) .
command
(
'theme'
,
'list available official themes'
) .
parse
(process.
argv
);