mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-26 13:19:34 +07:00
* 🔧 chore: Add changelog workflow * 🔧 chore: Update schema * 🔧 chore: Update schema * 🔧 chore: Update changelog workflow * 🔧 chore: Update changelog json * 🔧 chore: Update changelog * 📝 docs: Update Changelog
11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
import { consola } from 'consola';
|
|
|
|
import { buildStaticChangelog } from './buildStaticChangelog';
|
|
|
|
const run = () => {
|
|
consola.start('Building static changelog...');
|
|
buildStaticChangelog.run();
|
|
};
|
|
|
|
run();
|