We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d67764a + 425fab8 commit d612ed9Copy full SHA for d612ed9
lib/npm-installation-manager.ts
@@ -79,7 +79,7 @@ export class NpmInstallationManager implements INpmInstallationManager {
79
}
80
81
if (shouldInstall) {
82
- await this.$childProcess.exec(`npm install ${inspectorNpmPackageName}@${version} --prefix ${cachePath}`);
+ await this.$childProcess.exec(`npm install ${inspectorNpmPackageName}@${version} --prefix ${cachePath}`, { maxBuffer: 250 * 1024 });
83
84
85
this.$logger.out("Using inspector from cache.");
0 commit comments