feat: support calendar (#56)

* chore: modified title sync

* chore: replace console.log to console.debug

* feat: add FullCalendar dependencies and improve code organization

* chore: update view name bugs

* chore: support no date row

* chore: layout by created time and modified time

* chore: adjust time

* chore: pnpm install

* chore: fix something
This commit is contained in:
Kilu.He
2025-09-09 12:07:59 +08:00
committed by GitHub
parent ef001756cd
commit f6a8c83015
133 changed files with 7542 additions and 1595 deletions

View File

@@ -58,7 +58,7 @@ const main = () => {
const categories = processSvgFiles(iconsDirPath);
const outputFilePath = path.join(iconsDirPath, 'icons.json');
outputJson(categories, outputFilePath);
console.log(`JSON data has been written to ${outputFilePath}`);
console.debug(`JSON data has been written to ${outputFilePath}`);
};
main();