mirror of
https://github.com/Eugeny/tabby
synced 2024-11-14 17:07:15 +00:00
1e5cfd1d4b
New standard theme that follows your chosen terminal colors, Bootstrap 5 & Angular 15 upgrade
9 lines
312 B
JavaScript
Executable file
9 lines
312 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
import sh from 'shelljs'
|
|
import * as vars from './vars.mjs'
|
|
import log from 'npmlog'
|
|
|
|
vars.packagesWithDocs.forEach(([dest, src]) => {
|
|
log.info('docs', src)
|
|
sh.exec(`yarn typedoc --out docs/api/${dest} --tsconfig ${src}/tsconfig.typings.json ${src}/src/index.ts`, { fatal: true })
|
|
})
|