-
Notifications
You must be signed in to change notification settings - Fork 10
/
banner.js
22 lines (18 loc) · 1.09 KB
/
banner.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const chalk = require('chalk');
const pkg = require('./package.json');
const banner = `
/$$$$$$$ /$$$$$$$ /$$
| $$__ $$ | $$__ $$ | $$
| $$ \\ $$ /$$ /$$ /$$$$$$/$$$$ /$$$$$$ | $$ \\ $$ /$$$$$$ /$$$$$$
| $$$$$$$/| $$ | $$| $$_ $$_ $$ /$$__ $$| $$$$$$$ /$$__ $$|_ $$_/
| $$____/ | $$ | $$| $$ \\ $$ \\ $$| $$ \\ $$| $$__ $$| $$ \\ $$ | $$
| $$ | $$ | $$| $$ | $$ | $$| $$ | $$| $$ \\ $$| $$ | $$ | $$ /$$
| $$ | $$$$$$/| $$ | $$ | $$| $$$$$$$/| $$$$$$$/| $$$$$$/ | $$$$/
|__/ \\______/ |__/ |__/ |__/| $$____/ |_______/ \\______/ \\___/
| $$
| $$
|__/
Made in Italy with ❤ :: Version ${pkg.version}
${chalk.red.bold('-> USE AT YOUR OWN RISK <-')}
`;
module.exports = banner;