096df3209b
This PR moves the docs site to the private repo while keeping the docs content on the public repo. ### Change Type - [x] `documentation`
13 lines
336 B
TypeScript
13 lines
336 B
TypeScript
// import { buildDocs } from './build-docs'
|
|
import { generateApiContent } from './generateApiContent'
|
|
import { generateContent } from './generateContent'
|
|
|
|
async function main() {
|
|
const { log: nicelog } = console
|
|
nicelog('Creating content for www.')
|
|
// await buildDocs()
|
|
await generateApiContent()
|
|
await generateContent()
|
|
}
|
|
|
|
main()
|