mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-29 06:25:19 -04:00
🚀 Github Action 'build'
This commit is contained in:
parent
e4aa2ccbee
commit
f4e1a7377a
12 changed files with 37 additions and 39 deletions
|
@ -1,23 +0,0 @@
|
|||
import path from "path";
|
||||
import { readdirSync, existsSync } from "fs";
|
||||
|
||||
// Directory resolve
|
||||
const projectRoot = path.resolve(__dirname, "../../");
|
||||
|
||||
const outDir = path.resolve(projectRoot, "pngs");
|
||||
const staticSvgDir = path.resolve(projectRoot, "svg", "static");
|
||||
const animatedSvgDir = path.resolve(projectRoot, "svg", "animated");
|
||||
|
||||
// Generate a svg list
|
||||
if (!existsSync(staticSvgDir) || !existsSync(animatedSvgDir)) {
|
||||
throw new Error("svg directory not found");
|
||||
}
|
||||
|
||||
const staticCursors = readdirSync(staticSvgDir).map((f) =>
|
||||
path.resolve(staticSvgDir, f)
|
||||
);
|
||||
const animatedCursors = readdirSync(animatedSvgDir).map((f) =>
|
||||
path.resolve(animatedSvgDir, f)
|
||||
);
|
||||
|
||||
export { staticCursors, animatedCursors, outDir };
|
Loading…
Add table
Add a link
Reference in a new issue