From 7009c9083251a6853f349a61f780c078ac873b65 Mon Sep 17 00:00:00 2001 From: Infi Date: Fri, 22 Aug 2025 01:15:01 +0200 Subject: [PATCH] fix: uncomment the bulk of download_deps.ts Signed-off-by: Infi --- scripts/download_deps.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/download_deps.ts b/scripts/download_deps.ts index cb6078a7..618b8233 100644 --- a/scripts/download_deps.ts +++ b/scripts/download_deps.ts @@ -48,7 +48,7 @@ try { // Create the output folder Deno.mkdirSync(outputFolder, { recursive: true }) -/* + const deps = [ { file: "katex.min.css", @@ -331,7 +331,7 @@ for (const dep of deps) { const file = resolve(outputFolder, dep.file) Deno.writeFileSync(file, new Uint8Array(data)) console.log(`Downloaded ${dep.file} to ${file}`) -}*/ +} const libsQuery = "https://git.revolt.chat/api/v1/repos/android/final-markdown/releases/latest"