From 64ae84a27531a0b909521b32dbdb466d83b401c1 Mon Sep 17 00:00:00 2001 From: lafkpages Date: Mon, 16 Oct 2023 17:00:23 +0200 Subject: [PATCH] Remove unused imports in CLI pack command --- src/cli/commands/pack.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/cli/commands/pack.ts b/src/cli/commands/pack.ts index 2f3e1d9..ec2bff3 100644 --- a/src/cli/commands/pack.ts +++ b/src/cli/commands/pack.ts @@ -1,10 +1,8 @@ -import { Asar, BaseEntry } from "../.."; +import { Asar } from "../.."; -import { readFile, readdir, writeFile, mkdir } from "fs/promises"; +import { readFile, readdir, writeFile } from "fs/promises"; -import { join as joinPaths, resolve } from "path"; - -import type { Dirent } from "fs"; +import { join as joinPaths } from "path"; async function* walk( dir: string,