Tldraw/apps/docs/scripts/refresh-content.ts

8 wiersze
208 B
TypeScript

import { nicelog } from '@/utils/nicelog'
import { refreshContent } from './functions/refreshContent'
;(async function () {
nicelog('◦ Refreshing all content')
await refreshContent()
process.exit()
})()