From dac9329de3a6a07c2e3f47a5e9d0296aec662d26 Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Mon, 28 Sep 2020 20:36:08 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Bibata=20Modern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/modern/src/config.ts | 27 --------------------------- packages/modern/src/index.ts | 16 ++++++++++++---- 2 files changed, 12 insertions(+), 31 deletions(-) delete mode 100644 packages/modern/src/config.ts diff --git a/packages/modern/src/config.ts b/packages/modern/src/config.ts deleted file mode 100644 index 43317fa6..00000000 --- a/packages/modern/src/config.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { resolve } from "path"; -import { readdirSync } from "fs"; - -const rawSvgsDir = resolve("./src/svg"); -const staticCursorsDir = resolve(rawSvgsDir, "static"); -const animatedCursorsDir = resolve(rawSvgsDir, "animated"); - -const staticCursors = readdirSync(staticCursorsDir).map((f) => - resolve(staticCursorsDir, f) -); - -const animatedCursors = readdirSync(animatedCursorsDir).map((f) => - resolve(animatedCursorsDir, f) -); - -const schemesPath = resolve("schemes"); -const projectRoot = resolve("../../"); -const bitmapsPath = resolve(projectRoot, "bitmaps"); - -export { - rawSvgsDir, - schemesPath, - projectRoot, - bitmapsPath, - staticCursors, - animatedCursors -}; diff --git a/packages/modern/src/index.ts b/packages/modern/src/index.ts index 33de76dc..bebce5cb 100644 --- a/packages/modern/src/index.ts +++ b/packages/modern/src/index.ts @@ -1,6 +1,14 @@ import { createBitmaps } from "bibata-core"; -import * as pathConfig from "./config"; -import { colorSchemes } from "./color"; +import { themeColors } from "./color"; -const themeName = "Bibata-Modern"; -createBitmaps({ colorSchemes, pathConfig, themeName }); +import { resolve } from "path"; + +const projectRoot = resolve("../../"); +const args = { + themeName: "Bibata-Modern", + svgDir: resolve("./src/svg"), + bitmapsDir: resolve(projectRoot, "bitmaps"), + themeColors +}; + +createBitmaps(args);