From 2e87551c91c8ca44e37138bd831c3d2fd606ad96 Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Fri, 28 Aug 2020 11:32:23 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20Config=20clean?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/config.ts b/src/config.ts index a567e37..d1bc03e 100644 --- a/src/config.ts +++ b/src/config.ts @@ -5,13 +5,8 @@ import { staticCursors, animatedCursors, animatedClip } from "./cursors.json"; // Source Directory const svgsDir = path.resolve(__dirname, "svg"); -// Resolve Paths for svg -const staticSvgs = staticCursors.map((svg: string) => - path.resolve(svgsDir, svg) -); - // Out Directory const bitmapsDir = path.resolve(process.cwd(), "bitmaps"); if (!fs.existsSync(bitmapsDir)) fs.mkdirSync(bitmapsDir); -export { staticSvgs, animatedCursors, svgsDir, bitmapsDir, animatedClip }; +export { staticCursors, animatedCursors, svgsDir, bitmapsDir, animatedClip };