UNPKG
@wep2/cli
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Command line for Wepublish Editor 2
@wep2/cli
/
bin
/
index.js
8 lines
•
280 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
#!/usr/bin/env node
const
chalk =
require
(
'chalk'
);
const
figlet =
require
(
'figlet'
);
// welcome text
console
.
log
(chalk.
green
(figlet.
textSync
(
'WEPUBLISH EDITOR 2'
)));
// defining the cli program
Promise
.
resolve
().
then
(
() =>
require
(
'./program'
));
//# sourceMappingURL=index.js.map