Repository URL to install this package:
|
Version:
3.0.0-beta.2 ▾
|
@skava/forms
/
danger
|
|---|
| .. |
| __unused |
| Makefile.ts |
| README.md |
| config.ts |
| git.ts |
| output.json |
| safety.ts |
| scripts.ts |
| shell.ts |
async function danger() { // @todo need to capture with colours in subprocess // log.shush() // had to do this instead of exec for colors... console.time('danger') // 75305.972ms // 63578.819ms // await run('tslint') // await run('test') // await run('eslint') // await run('styledlint') // await run('typescript') // 52761.767ms // 40774.407ms await Promise.all( ['tslint', 'test', 'eslint', 'styledlint', 'typescript'].map(run) ) console.timeEnd('danger') // log.unShush() console.log('\n...;') }