Skip to content

Commit

Permalink
Merge branch 'master' into fix/grunion-success-message-block-template…
Browse files Browse the repository at this point in the history
…-part
  • Loading branch information
danielbachhuber committed Jun 14, 2022
2 parents d2f4c65 + 78e08af commit 8210f3c
Show file tree
Hide file tree
Showing 225 changed files with 4,539 additions and 5,365 deletions.
12 changes: 12 additions & 0 deletions .pnpmfile.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,18 @@ function fixDeps( pkg ) {
pkg.dependencies.trim = '^0.0.3';
}

// Avoid broken version of rememo. Looks like 4.0.0 doesn't actually change the API, so this should work.
// https://github.com/aduth/rememo/issues/8
if ( pkg.dependencies.rememo === '^4.0.0' ) {
pkg.dependencies.rememo = '^3.0.0 || ^4.0.1';
}

// Cheerio 1.0.0-rc.11 breaks enzyme 3.11.0.
// No bug link, we're planning on dropping enzyme soonish anyway.
if ( pkg.name === 'enzyme' && pkg.dependencies.cheerio === '^1.0.0-rc.3' ) {
pkg.dependencies.cheerio = '^1.0.0-rc.3 <= 1.0.0-rc.10';
}

return pkg;
}

Expand Down
Loading

0 comments on commit 8210f3c

Please sign in to comment.