fix build

This commit is contained in:
Ruben Fiszel
2023-07-10 08:37:22 +02:00
parent b2d0490e6e
commit aa807353fc
2 changed files with 5 additions and 1 deletions
@@ -32,7 +32,7 @@
go: GoIcon,
python3: PythonIcon,
deno: TypeScriptIcon,
// graphql: TypeScriptIcon,
graphql: TypeScriptIcon,
bun: TypeScriptIcon,
bash: BashIcon,
pgsql: PostgresIcon,
+4
View File
@@ -12,8 +12,12 @@ export function scriptLangToEditorLang(lang: Script.language) {
return 'typescript'
} else if (lang == 'nativets') {
return 'typescript'
} else if (lang == 'graphql') {
return 'typescript'
} else if (lang == 'postgresql') {
return 'sql'
} else if (lang == 'mysql') {
return 'sql'
} else if (lang == 'python3') {
return 'python'
} else if (lang == 'bash') {