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 6e770f6 commit 8d62999Copy full SHA for 8d62999
src/main.ts
@@ -206,6 +206,7 @@ function listYarnBerryWorkspaces(directory: string): string[] {
206
.execSync('yarn workspaces list --json', {
207
cwd: directory,
208
encoding: 'utf-8',
209
+ maxBuffer: 1024 * 1024 * 5, // 5MB
210
})
211
.split('\n')
212
for (const line of lines) {
@@ -230,6 +231,7 @@ function listYarnWorkspaces(directory: string): string[] {
230
231
child_process.execSync('yarn --silent --json workspaces info', {
232
233
234
235
236
).data
237
)
0 commit comments