create-tinny-backend 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +27 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -18,9 +18,35 @@ if (fs.existsSync(targetDir)) {
|
|
|
18
18
|
process.exit(1);
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
+
const header = {
|
|
22
|
+
message: ` █████ ███ █████ █████ █████
|
|
23
|
+
░░███ ░░░ ░░███ ░░███ ░░███
|
|
24
|
+
███████ ████ ████████ ████████ █████ ████ ░███████ ██████ ██████ ░███ █████ ██████ ████████ ███████
|
|
25
|
+
░░░███░ ░░███ ░░███░░███ ░░███░░███ ░░███ ░███ ░███░░███ ░░░░░███ ███░░███ ░███░░███ ███░░███░░███░░███ ███░░███
|
|
26
|
+
░███ ░███ ░███ ░███ ░███ ░███ ░███ ░███ ░███ ░███ ███████ ░███ ░░░ ░██████░ ░███████ ░███ ░███ ░███ ░███
|
|
27
|
+
░███ ███ ░███ ░███ ░███ ░███ ░███ ░███ ░███ ░███ ░███ ███░░███ ░███ ███ ░███░░███ ░███░░░ ░███ ░███ ░███ ░███
|
|
28
|
+
░░█████ █████ ████ █████ ████ █████ ░░███████ ████████ ░░████████░░██████ ████ █████░░██████ ████ █████░░████████
|
|
29
|
+
░░░░░ ░░░░░ ░░░░ ░░░░░ ░░░░ ░░░░░ ░░░░░███ ░░░░░░░░ ░░░░░░░░ ░░░░░░ ░░░░ ░░░░░ ░░░░░░ ░░░░ ░░░░░ ░░░░░░░░
|
|
30
|
+
███ ░███
|
|
31
|
+
░░██████
|
|
32
|
+
░░░░░░ `,
|
|
33
|
+
by: `d88PPPo 888 88
|
|
34
|
+
888ooo8 888ooo88
|
|
35
|
+
888 8 88
|
|
36
|
+
888PPPP PPPPPP8P
|
|
37
|
+
`,
|
|
38
|
+
author: `▗▖ ▗▖▗▄▖ ▗▄▄▖ ▗▄▄▖▗▄▄▄▖▗▖ ▗▖▗▄▄▄▖ ▗▄▖ ▗▖ ▗▄▖ ▗▄▄▖▗▄▄▖ ▗▄▖ ▗▖ ▗▖
|
|
39
|
+
▝▚▞▘▐▌ ▐▌▐▌ ▐▌ █ ▐▛▚▖▐▌▐▌ ▐▌ ▐▌ ▐▌▐▌ ▐▌▐▌ ▐▌ ▐▌▐▌ ▐▌▐▌ ▐▌
|
|
40
|
+
▐▌ ▐▛▀▜▌ ▝▀▚▖ ▝▀▚▖ █ ▐▌ ▝▜▌▐▛▀▀▘ ▐▛▀▜▌ ▐▌▐▛▀▜▌▐▌▝▜▌▐▛▀▚▖▐▌ ▐▌▐▌ ▐▌
|
|
41
|
+
▐▌ ▐▌ ▐▌▗▄▄▞▘▗▄▄▞▘▗▄█▄▖▐▌ ▐▌▐▙▄▄▖ ▐▌ ▐▌▗▄▄▞▘▐▌ ▐▌▝▚▄▞▘▐▌ ▐▌▝▚▄▞▘▝▚▄▞▘
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
`
|
|
45
|
+
}
|
|
46
|
+
|
|
21
47
|
|
|
22
48
|
(async function main() {
|
|
23
|
-
console.log(cyan(
|
|
49
|
+
console.log(cyan(`\n${header.message}\n${header.by}\n${header.author}\n`));
|
|
24
50
|
|
|
25
51
|
const response = await prompts([
|
|
26
52
|
{
|