mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-23 19:46:57 -04:00
🔗 Schemes out Path
This commit is contained in:
parent
815f6c491f
commit
bb646ab67e
1 changed files with 4 additions and 6 deletions
|
@ -53,13 +53,12 @@ const generateConfigs = ({
|
||||||
.replace(new RegExp(outlineKeyColor, "g"), outline);
|
.replace(new RegExp(outlineKeyColor, "g"), outline);
|
||||||
|
|
||||||
// Save Schema
|
// Save Schema
|
||||||
const cursorPath = path.resolve(schemaSvgsPath, "static");
|
|
||||||
writeSchemaData({
|
writeSchemaData({
|
||||||
path: cursorPath,
|
path: schemaSvgsPath,
|
||||||
fileName: path.basename(cursor),
|
fileName: path.basename(cursor),
|
||||||
content
|
content
|
||||||
});
|
});
|
||||||
return cursorPath;
|
return schemaSvgsPath;
|
||||||
});
|
});
|
||||||
|
|
||||||
const aCursors = animatedCursors.map((cursor: string) => {
|
const aCursors = animatedCursors.map((cursor: string) => {
|
||||||
|
@ -87,14 +86,13 @@ const generateConfigs = ({
|
||||||
}
|
}
|
||||||
|
|
||||||
// Save Schema
|
// Save Schema
|
||||||
const cursorPath = path.resolve(schemaSvgsPath, "animated");
|
|
||||||
writeSchemaData({
|
writeSchemaData({
|
||||||
path: cursorPath,
|
path: schemaSvgsPath,
|
||||||
fileName: path.basename(cursor),
|
fileName: path.basename(cursor),
|
||||||
content
|
content
|
||||||
});
|
});
|
||||||
|
|
||||||
return cursorPath;
|
return schemaSvgsPath;
|
||||||
});
|
});
|
||||||
|
|
||||||
// Creating Dir for store bitmaps
|
// Creating Dir for store bitmaps
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue