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
/
src
/
index.ts
14 lines
(11 loc)
•
226 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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
import
(
'./program'
)