mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 13:09:03 +08:00
9 lines
197 B
JavaScript
9 lines
197 B
JavaScript
import fs from 'fs';
|
|
import getDocContent from './utils/getDocContent.js';
|
|
|
|
async function main() {
|
|
fs.writeFileSync('src/pages/doc.md', getDocContent(), 'utf-8');
|
|
}
|
|
|
|
main().catch(console.error);
|