Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -619,6 +619,14 @@ export async function applyPackageOverrides(
)
modified = true
}
if (content.includes('blockExoticSubdeps:')) {
// disable with comment to avoid error on installation if ecosystem-ci overrides pull in tarball URLs
content = content.replace(
/^([ \t]*blockExoticSubdeps[ \t]*:[ \t]*\w+[^\r\n]*)$/m,
'# $1 -- disabled by ecosystem-ci',
)
modified = true
}
if (modified) {
await fs.promises.writeFile(pnpmWorkspaceFile, content, 'utf-8')
}
Expand Down
Loading