From 5e3349df300ab510042e0f6f836e7471383174cd Mon Sep 17 00:00:00 2001 From: KaizIqbal <24286590+KaizIqbal@users.noreply.github.com> Date: Sat, 25 Jul 2020 17:19:56 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=83=20logs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index f16937e..6212695 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,5 @@ -import { bitmapsDir, svgs } from "./config"; +import { svgs } from "./config"; -console.log(bitmapsDir, svgs); +(async () => { + svgs.map((svg: string) => console.log(svg)); +})();