UNPKG
wic-weapp-cli
Version:
latest (0.4.3)
0.4.3
0.4.2
0.4.1
0.4.0
0.1.0
0.0.3
A scaffold uesd to fast develop weapp projects.
github.com/blcher/wic-weapp-cli
blcher/wic-weapp-cli
wic-weapp-cli
/
lib
/
utils
/
printLogo.js
16 lines
(14 loc)
•
331 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const
figlet
=
require
(
"figlet"
);
const
printLogo
= () => { console.
log
(
"\r\n"
+ figlet.
textSync
(
"Blcher"
, {
font
:
"Bloody"
,
horizontalLayout
:
"default"
,
verticalLayout
:
"default"
,
width
:
60
,
whitespaceBreak
:
"true"
, }) ); }; module.exports = printLogo;