@@ -13,60 +13,48 @@ const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms));
1313
1414// Constructive logo ASCII art
1515const 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
7159const 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