mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 01:17:14 +00:00
9 lines
252 B
JavaScript
Executable file
9 lines
252 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
const sh = require('shelljs')
|
|
const vars = require('./vars')
|
|
const log = require('npmlog')
|
|
|
|
vars.builtinPlugins.forEach(plugin => {
|
|
log.info('typings', plugin)
|
|
sh.exec(`npx tsc --project ${plugin}/tsconfig.typings.json`)
|
|
})
|