From 00edd9e63d21bb8d4bddbad7a696e43d9cecc111 Mon Sep 17 00:00:00 2001 From: KaizIqbal <24286590+KaizIqbal@users.noreply.github.com> Date: Sat, 25 Jul 2020 17:48:57 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=B8=20Animated=20cursors=20list?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index 26b8c55..c4dbd76 100644 --- a/src/config.ts +++ b/src/config.ts @@ -4,12 +4,15 @@ import fs from "fs"; // Source Directory const svgsDir = path.resolve(__dirname, "svg"); +// .svg let svgs = fs .readdirSync(svgsDir) .filter((file) => path.extname(file) === ".svg"); svgs = svgs.map((svg: string) => path.resolve(svgsDir, svg)); +const animatedCursor = ["watch", "left_ptr_watch"]; + // Out Directory const bitmapsDir = path.resolve(process.cwd(), "bitmaps"); -export { svgs, bitmapsDir }; +export { svgs, animatedCursor, bitmapsDir };