We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d67764a commit 425fab8Copy full SHA for 425fab8
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