mirror of
https://github.com/Eugeny/tabby
synced 2024-11-14 00:47:15 +00:00
1e5cfd1d4b
New standard theme that follows your chosen terminal colors, Bootstrap 5 & Angular 15 upgrade
9 lines
264 B
JavaScript
Executable file
9 lines
264 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
import sh from 'shelljs'
|
|
import * as vars from './vars.mjs'
|
|
import log from 'npmlog'
|
|
|
|
vars.builtinPlugins.forEach(plugin => {
|
|
log.info('typings', plugin)
|
|
sh.exec(`yarn tsc --project ${plugin}/tsconfig.typings.json`, { fatal: true })
|
|
})
|