(cb)
| 108 | } |
| 109 | |
| 110 | function npmInstall (cb) { |
| 111 | const args = ['install'] |
| 112 | spawn(NPM, args, { cwd: folder, stdio: 'ignore' }, err => { |
| 113 | if (err) err.message += ` (npm install) (${name})` |
| 114 | cb(err) |
| 115 | }) |
| 116 | } |
| 117 | |
| 118 | function runStandard (cb) { |
| 119 | const args = [STANDARD, '--verbose'] |