make script errors fatal

This commit is contained in:
Eugene Pankov
2022-01-16 19:41:01 +01:00
parent 782128308c
commit 64410a9302
6 changed files with 29 additions and 34 deletions

View File

@@ -5,5 +5,5 @@ const log = require('npmlog')
vars.builtinPlugins.forEach(plugin => {
log.info('typings', plugin)
sh.exec(`npx tsc --project ${plugin}/tsconfig.typings.json`)
sh.exec(`yarn tsc --project ${plugin}/tsconfig.typings.json`, { fatal: true })
})