File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -585,13 +585,13 @@ async function addOverrides(
585
585
} )
586
586
} )
587
587
if ( workspaceGlobs ) {
588
- const wsPkgJsonPaths = await tinyGlob ( workspaceGlobs , {
588
+ const workspacePkgJsonPaths = await tinyGlob ( workspaceGlobs , {
589
589
absolute : true ,
590
590
cwd : pkgPath ! ,
591
591
ignore : [ '**/node_modules/**' , '**/bower_components/**' ]
592
592
} )
593
593
// Chunk package names to process them in parallel 3 at a time.
594
- await pEach ( wsPkgJsonPaths , 3 , async wsPkgJsonPath => {
594
+ await pEach ( workspacePkgJsonPaths , 3 , async workspacePkgJsonPath => {
595
595
const otherState = await addOverrides (
596
596
{
597
597
agent,
@@ -600,7 +600,7 @@ async function addOverrides(
600
600
manifestEntries,
601
601
npmExecPath,
602
602
pin,
603
- pkgPath : path . dirname ( wsPkgJsonPath ) ,
603
+ pkgPath : path . dirname ( workspacePkgJsonPath ) ,
604
604
prod,
605
605
rootPath
606
606
} ,
You can’t perform that action at this time.
0 commit comments