From 0f07c14f08a05967f508d17f6259bfe49e7e8536 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Tue, 1 Aug 2023 10:55:19 +0200 Subject: [PATCH] fix(cli): add support for inlining native ts --- cli/sync.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/sync.ts b/cli/sync.ts index d05a47f617..6d6f05be72 100644 --- a/cli/sync.ts +++ b/cli/sync.ts @@ -137,6 +137,7 @@ function ZipFSElement(zip: JSZip, useYaml: boolean): DynFSElement { else if (language == "mysql") ext = "my.sql"; else if (language == "bigquery") ext = "bq.sql"; else if (language == "bun") ext = "bun.ts"; + else if (language == "nativets") ext = "native.ts"; return `${name}.inline_script.${ext}`; }