🚀 Github Action 'build'

This commit is contained in:
ful1e5 2021-02-03 17:32:50 +05:30
parent e4aa2ccbee
commit f4e1a7377a
12 changed files with 37 additions and 39 deletions

View file

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