(cwd, name)
| 165 | } |
| 166 | |
| 167 | _npmInstall(cwd, name) { |
| 168 | logger.info(`Running "npm install" for "${name}" in "${cwd}" ...`); |
| 169 | |
| 170 | this._copyNpmrc(cwd); |
| 171 | |
| 172 | return execa('npm', ['install', '--no-package-lock', '--save', name], { cwd }); |
| 173 | } |
| 174 | |
| 175 | _handleNpmInstallModuleError(error) { |
| 176 | let match = error.stderr && error.stderr.match(NOT_FOUND_REGEXP); |
no test coverage detected