tldraw/scripts/lib/docs/generate-on-reload.ts
Steve Ruiz 096df3209b
[1/2] Move docs to brivate (#1640)
This PR moves the docs site to the private repo while keeping the docs
content on the public repo.

### Change Type

- [x] `documentation`
2023-06-23 14:23:14 +00:00

10 lines
228 B
TypeScript

// import { buildDocs } from './build-docs'
import { generateContent } from './generateContent'
async function main() {
const { log: nicelog } = console
nicelog('Creating content for www.')
await generateContent()
}
main()