File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,56 +8,56 @@ const unicode = isUnicodeSupported();
88// prettier-ignore
99const UNICODE_LOCKS : Record < LockExpression , string [ ] > = {
1010 success : [
11- ' ╭─╮ ' ,
12- ' │ │ ' ,
13- '╔╧═╧ ╗' ,
14- '║◠ ◠║' ,
15- '║ ▽ ║' ,
16- '╚═══╝' ,
11+ ' ╭───╮ ' ,
12+ ' │ │ ' ,
13+ '╔═╧═══╧═ ╗' ,
14+ '║ ◠ ◠ ║' ,
15+ '║ ▽ ║' ,
16+ '╚═══════ ╝' ,
1717 ] ,
1818 warning : [
19- ' ╭─╮ ' ,
20- ' │ │ ' ,
21- '╔╧═╧ ╗' ,
22- '║• •║' ,
23- '║ ─ ║' ,
24- '╚═══╝' ,
19+ ' ╭───╮ ' ,
20+ ' │ │ ' ,
21+ '╔═╧═══╧═ ╗' ,
22+ '║ • • ║' ,
23+ '║ ─ ║' ,
24+ '╚═══════ ╝' ,
2525 ] ,
2626 error : [
27- ' ╭─╮ ' ,
28- ' │ │ ' ,
29- '╔╧ ══╗' ,
30- '║× ×║' ,
31- '║ △ ║' ,
32- '╚═══╝' ,
27+ ' ╭───╮ ' ,
28+ ' │ │ ' ,
29+ '╔═╧═══ ══╗' ,
30+ '║ × × ║' ,
31+ '║ △ ║' ,
32+ '╚═══════ ╝' ,
3333 ] ,
3434} ;
3535
3636// prettier-ignore
3737const ASCII_LOCKS : Record < LockExpression , string [ ] > = {
3838 success : [
39- ' .-. ' ,
40- ' | | ' ,
41- '+---+' ,
42- '|^ ^|' ,
43- '| v |' ,
44- '+---+' ,
39+ ' .---. ' ,
40+ ' | | ' ,
41+ '+------- +' ,
42+ '| ^ ^ |' ,
43+ '| v |' ,
44+ '+------- +' ,
4545 ] ,
4646 warning : [
47- ' .-. ' ,
48- ' | | ' ,
49- '+---+' ,
50- '|. .|' ,
51- '| - |' ,
52- '+---+' ,
47+ ' .---. ' ,
48+ ' | | ' ,
49+ '+------- +' ,
50+ '| . . |' ,
51+ '| - |' ,
52+ '+------- +' ,
5353 ] ,
5454 error : [
55- ' .-. ' ,
56- ' | ' ,
57- '+---+' ,
58- '|x x|' ,
59- '| ^ |' ,
60- '+---+' ,
55+ ' .---. ' ,
56+ ' | ' ,
57+ '+------- +' ,
58+ '| x x |' ,
59+ '| ^ |' ,
60+ '+------- +' ,
6161 ] ,
6262} ;
6363
@@ -68,7 +68,7 @@ const COLORS: Record<LockExpression, (text: string) => string> = {
6868} ;
6969
7070/** Width of each lock art line (all lines are the same width). */
71- export const LOCK_WIDTH = 5 ;
71+ export const LOCK_WIDTH = 9 ;
7272
7373/**
7474 * Returns the WorkOS lock character as an array of lines.
You can’t perform that action at this time.
0 commit comments