mirror of
https://github.com/lobehub/lobe-chat.git
synced 2026-06-14 03:30:19 +00:00
19da5e419d
* 🔧 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();
|