Tldraw/apps/docs/scripts/fetch-api-source.ts

9 wiersze
240 B
TypeScript

import { nicelog } from '@/utils/nicelog'
import { fetchApiSource } from './functions/fetchApiSource'
;(async function () {
nicelog('• Fetching API source files...')
await fetchApiSource()
nicelog('✔ Complete!')
process.exit()
})()