Skip to content

Commit 808cff9

Browse files
committed
sized
1 parent 52a8e8b commit 808cff9

1 file changed

Lines changed: 47 additions & 59 deletions

File tree

packages/inquirerer/dev/demo-constructive.ts

Lines changed: 47 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -13,60 +13,48 @@ const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms));
1313

1414
// Constructive logo ASCII art
1515
const CONSTRUCTIVE_LOGO = `
16-
.=====:
17-
.=== .==-
18-
.==- .==-.
19-
:==: .-==.
20-
-==. -==.
21-
.-==-==. .-===
22-
.-==. :==: .=======
23-
.=== .==- .==========
24-
.==- .==-. :=============
25-
:==: .===================
26-
====. -===================
27-
=: ===. =======================
28-
=: :==: .==========================
29-
=: .==- :=============================
30-
=: .==================================
31-
=: ===============================:
32-
=: ============================.
33-
=: =========================.
34-
=: ======================
35-
.==. ==================-
36-
:==: .===. ===============:
37-
-==. === ============:
38-
.-==. -==: =========.
39-
.===. :==:======.
40-
:==. -===
41-
:=:===. :=====
42-
:= .===. .-========
43-
:= .===: .============
44-
:= ===: :===============
45-
:= :================= .===:
46-
:= ================= .==-. .==-
47-
:= ================= :==- .===
48-
:= ================= :==: .-==.
49-
:= =================-==. .-==.
50-
:==: ==================: .===
51-
:= :==- ================= :==: .======
52-
:= .==-. ================= .==-. :=========
53-
:= .===. ================= .===. :============
54-
:= -=================== ===.================
55-
:= ================= -==================
56-
:= ================= .-=====================
57-
:= ================= .=========================
58-
:= ================= .============================
59-
:= ================================================
60-
-==. ===============================================.
61-
:==: =============. =============================.
62-
:==: ==========. ==========================.
63-
.==-. ======:. ======================-.
64-
.=====: ===================:
65-
.===. ================:
66-
-==. =============.
67-
:==: ==========.
68-
.==- =======
69-
.====-`;
16+
.==-
17+
:=: .--.
18+
-=: ==.
19+
-=: -=.
20+
-=:=: .===
21+
==. :=- :======
22+
.=- .== :=========
23+
:=: .---============
24+
=-=: -===============
25+
= -=- ===================
26+
= :=: .======================
27+
= .==========================
28+
= :======================:
29+
= :===================:
30+
= :================.
31+
-=- :=============
32+
.== .=- :=========-
33+
.=- .-=. :======-
34+
:=: -=-===:
35+
==- ===
36+
= :=- .======
37+
= .=-. :=========
38+
= ===============
39+
= ============= :=:.==.
40+
= ============= -=: -=.
41+
= ============= -=. -=:
42+
= ============== :=-
43+
=.-=. =============.=- :====
44+
= -=. ============= .--. -=======
45+
= -=: ============= ==. -==========
46+
= :============= .==============
47+
= ============= .-================
48+
= ============= .====================
49+
= =============:=======================
50+
:=: ====================================:
51+
:=- =========. :=====================.
52+
.=- ======. :==================
53+
.-===- :==============-
54+
-=. :===========:
55+
-=. :========:
56+
-=: :=====:
57+
:===.`;
7058

7159
const LOGO_LINES = CONSTRUCTIVE_LOGO.split('\n').filter(line => line.length > 0);
7260

@@ -159,14 +147,14 @@ async function main() {
159147

160148
// Add title and info
161149
lines.push('');
162-
lines.push(white(' C O N S T R U C T I V E'));
163-
lines.push(dim(' Database-first development platform'));
150+
lines.push(white(' C O N S T R U C T I V E'));
151+
lines.push(dim(' Database-first development platform'));
164152
lines.push('');
165-
153+
166154
if (state.phase === 'complete') {
167-
lines.push(dim(' Press any key to exit...'));
155+
lines.push(dim(' Press any key to exit...'));
168156
} else if (state.phase === 'color-wave') {
169-
lines.push(dim(' Press SPACE to stop animation'));
157+
lines.push(dim(' Press SPACE to stop animation'));
170158
}
171159

172160
return lines;

0 commit comments

Comments
 (0)