From 37f1525d0e688dcc2d59ceaf7218b81f8c01683c Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Thu, 27 Feb 2025 08:53:38 +0100 Subject: [PATCH] build(copy-dist): remove unused paths --- bin/copy-dist.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/copy-dist.ts b/bin/copy-dist.ts index e5f8b6603..4c69900cd 100644 --- a/bin/copy-dist.ts +++ b/bin/copy-dist.ts @@ -2,8 +2,6 @@ import fs from "fs-extra"; import path from "path"; const DEST_DIR = "./dist"; -const DEST_DIR_SRC = path.join(DEST_DIR, "src"); -const DEST_DIR_NODE_MODULES = path.join(DEST_DIR, "node_modules"); const VERBOSE = process.env.VERBOSE;