Skip to content

Commit 425fab8

Browse files
author
Deyan Ginev
committed
fix(CLI): Increase inspector installer memory buffer.
1 parent d67764a commit 425fab8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/npm-installation-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export class NpmInstallationManager implements INpmInstallationManager {
7979
}
8080

8181
if (shouldInstall) {
82-
await this.$childProcess.exec(`npm install ${inspectorNpmPackageName}@${version} --prefix ${cachePath}`);
82+
await this.$childProcess.exec(`npm install ${inspectorNpmPackageName}@${version} --prefix ${cachePath}`, { maxBuffer: 250 * 1024 });
8383
}
8484

8585
this.$logger.out("Using inspector from cache.");

0 commit comments

Comments
 (0)