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 };