From 6cd231426d4b628a2928665d37ac0bacc1834b3b Mon Sep 17 00:00:00 2001 From: garronej Date: Tue, 7 Feb 2023 01:32:20 +0100 Subject: [PATCH] Import Blob from node builtins --- src/bin/tools/zip.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/tools/zip.ts b/src/bin/tools/zip.ts index 5a2ad9be..bd93b6ef 100644 --- a/src/bin/tools/zip.ts +++ b/src/bin/tools/zip.ts @@ -1,6 +1,7 @@ import { Transform, TransformOptions } from "stream"; import { createReadStream } from "fs"; import { stat } from "fs/promises"; +import { Blob } from "buffer"; import { deflateBuffer, deflateStream } from "./deflate";