From 2cce7bccb82f312300886bd51231e1399bf17e18 Mon Sep 17 00:00:00 2001 From: The Wizard Bear <42446683+TheWizardBear@users.noreply.github.com> Date: Mon, 9 Nov 2020 17:37:32 +0000 Subject: [PATCH] fixed unpng version --- deps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.ts b/deps.ts index 76bee3b..83bf43a 100644 --- a/deps.ts +++ b/deps.ts @@ -1,5 +1,5 @@ export { decode as decodeJpeg } from "https://deno.land/x/jpegts@1.1/mod.ts"; export { parse } from "https://deno.land/std@0.77.0/flags/mod.ts"; export * as colors from "https://deno.land/std@0.77.0/fmt/colors.ts"; -import unpng from "https://cdn.skypack.dev/upng-js@v2.2.0"; +import unpng from "https://cdn.skypack.dev/upng-js@v2.1.0"; export const decodePng = (unpng as any).decode;