From d77d3e3d5aadde217399cff1d07652c81b3a0fb4 Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+KaizIqbal@users.noreply.github.com> Date: Sun, 16 Aug 2020 12:32:42 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=81=20Directory=20prefix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/round/src/index.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/packages/round/src/index.ts b/packages/round/src/index.ts index 02cc74ab..a7f2f1a6 100644 --- a/packages/round/src/index.ts +++ b/packages/round/src/index.ts @@ -1,7 +1,12 @@ -import { configs } from "./config"; +import { generateConfigs } from "./helpers/schema"; +import { colorSchemes, rawSvgsDir } from "./config"; + // from shared package // import { renderCursors } from "shared"; -console.log("Bibata Round"); +// Svg generate dir prefix +const prefix = "Bibata Round"; + +const configs = generateConfigs(colorSchemes, prefix, rawSvgsDir); console.log(configs);