diff --git a/src/config.ts b/src/config.ts index 173b7e7..6c2009d 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,6 +1,6 @@ import path from "path"; import fs from "fs"; -import { staticCursors } from "./cursors.json"; +import { staticCursors, animatedCursors } from "./cursors.json"; // Source Directory const svgsDir = path.resolve(__dirname, "svg"); @@ -14,4 +14,4 @@ const staticSvgs = staticCursors.map((svg: string) => const bitmapsDir = path.resolve(process.cwd(), "bitmaps"); if (!fs.existsSync(bitmapsDir)) fs.mkdirSync(bitmapsDir); -export { staticSvgs, bitmapsDir }; +export { staticSvgs, animatedCursors, bitmapsDir };