#!/usr/bin/env node 'use strict'; const chalk = require('chalk'); const {exec} = require('child-process-promise'); const {logPromise} = require('../utils'); const runYarnTask = async (cwd, task, errorMessage) => { try { await exec(`yarn ${task}`, {cwd}); } catch (error) { throw Error( chalk` ${errorMessage} {white ${error.stdout}} ` ); } }; module.exports = async ({cwd}) => { await logPromise(runYarnTask(cwd, 'lint', 'Lint failed'), 'Running ESLint'); await logPromise( runYarnTask(cwd, 'flow', 'Flow failed'), 'Running Flow checks' ); await logPromise( runYarnTask(cwd, 'jest', 'Jest failed'), 'Running Jest tests' ); };