mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-15 07:34:44 -04:00
11 lines
260 B
TypeScript
11 lines
260 B
TypeScript
import path from "path";
|
|
import fs from "fs";
|
|
|
|
// Source Directory
|
|
const svgsDir = path.resolve(__dirname, "svg");
|
|
const svgs = fs.readdirSync(svgsDir);
|
|
|
|
// Out Directory
|
|
const bitmapsDir = path.resolve(process.cwd(), "bitmaps");
|
|
|
|
export { svgs, bitmapsDir };
|