Run all of the lint:fix commands; echo any lint errors to stdout/stderr

This commit is contained in:
Jed Fox 2017-11-04 07:13:05 -04:00
parent d012b192f5
commit eaf5c478c9

View file

@ -105,5 +105,5 @@ generateIconData().then(result => {
console.log('Ensuring generated file is formatted correctly...')
const root = Path.dirname(__dirname)
return cp.spawn('yarn', ['eslint:fix'], { cwd: root })
return cp.spawn('yarn', ['lint:fix'], { cwd: root, stdio: 'inherit' })
})