UNPKG
cyj
Version:
latest (0.0.1)
0.0.1
创建vue项目, 以及添加component page命令
github.com/coderyj22/cyj
coderyj22/cyj
cyj
/
lib
/
core
/
help.js
9 lines
(6 loc)
•
233 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
program =
require
(
"commander"
);
const
helpOptions
= (
) => { program.
option
(
"-w --cyj"
,
"a cyj cli"
); program.
option
(
"-d --dest <dest>"
,
"a destination folder,例如: -d /src/components"
); };
module
.
exports
= helpOptions;