11 lines
237 B
TypeScript
11 lines
237 B
TypeScript
// import { buildDocs } from './build-docs'
|
|
import { generateContent } from './generateContent'
|
|
|
|
async function main() {
|
|
const { log } = console
|
|
log('Creating content for www.')
|
|
// await buildDocs()
|
|
await generateContent()
|
|
}
|
|
|
|
main()
|