File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -26,17 +26,17 @@ async function run() {
26
26
27
27
const typesString = `${ BANNER }
28
28
export type EmojiKey = ${ Object . keys ( emojiUrls ) . map ( ( name ) => `"${ name } "` ) . join ( "\n | " ) } | (string & {});
29
- `;
29
+ ` ;
30
30
31
31
await writeFile ( "./src/types.ts" , typesString ) ;
32
32
33
33
const constantsString = `${ BANNER }
34
34
import type { EmojiKey } from "./types";
35
35
36
36
export const EMOJI_KEYS = [
37
- ${ Object . entries ( emojiUrls ) . map ( ( [ name ] ) => `"${ name } "` ) . join ( ",\n " ) }
37
+ ${ Object . entries ( emojiUrls ) . map ( ( [ name ] ) => `"${ name } "` ) . join ( ",\n " ) } ,
38
38
] as readonly EmojiKey[];
39
- `;
39
+ ` ;
40
40
41
41
await writeFile ( "./src/constants.ts" , constantsString ) ;
42
42
Original file line number Diff line number Diff line change @@ -1939,6 +1939,5 @@ export const EMOJI_KEYS = [
1939
1939
"zombie" ,
1940
1940
"zombie_man" ,
1941
1941
"zombie_woman" ,
1942
- "zzz"
1942
+ "zzz" ,
1943
1943
] as readonly EmojiKey [ ] ;
1944
-
Original file line number Diff line number Diff line change @@ -1937,4 +1937,3 @@ export type EmojiKey = "100"
1937
1937
| "zombie_man"
1938
1938
| "zombie_woman"
1939
1939
| "zzz" | ( string & { } ) ;
1940
-
You can’t perform that action at this time.
0 commit comments