mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-24 12:07:02 -04:00
🖼️ BitmapsGenerator init
This commit is contained in:
parent
4329aca7aa
commit
99dde92a8a
3 changed files with 90 additions and 2 deletions
|
@ -1,5 +1,20 @@
|
|||
import path from "path";
|
||||
|
||||
import { BitmapsGenerator, SVGHandler } from "bibata-core";
|
||||
|
||||
const root = path.resolve(__dirname, "../../../../");
|
||||
const svgDir = path.resolve(root, "svg", "modern");
|
||||
|
||||
const main = async () => {
|
||||
console.log("Bibata Modern");
|
||||
const SVG = new SVGHandler.SvgDirectoryParser(svgDir);
|
||||
|
||||
SVG.getStatic().forEach((svg) => {
|
||||
console.log(svg);
|
||||
});
|
||||
|
||||
SVG.getAnimated().forEach((svg) => {
|
||||
console.log(svg);
|
||||
});
|
||||
};
|
||||
|
||||
main();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue