From 3351888f196de66a52fb6644235e033fc1f7fbb5 Mon Sep 17 00:00:00 2001 From: Holly Date: Fri, 28 Jul 2023 12:40:07 +0100 Subject: [PATCH] fix broken import --- tooling/fileSmasher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooling/fileSmasher.ts b/tooling/fileSmasher.ts index 7ac690b..827d319 100644 --- a/tooling/fileSmasher.ts +++ b/tooling/fileSmasher.ts @@ -42,7 +42,7 @@ const splitLines = combinedFiles.split("\n"); const resultLines:Array = new Array(); // Insert allowed imports -resultLines.push(`import chalk from "chalk"; +resultLines.push(`import * as dyetty from "dyetty"; import { createWriteStream, mkdirSync, existsSync, readFileSync, readFile, writeFile, writeFileSync, readdirSync } from "fs"; import { deflate, inflate } from "zlib"; import { createWriter, createReader, IReader, Endian } from "bufferstuff";