Skip to content

Commit

Permalink
infra: ignore esm-only upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
AviVahl committed Sep 25, 2024
1 parent 26abbc6 commit cee0779
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pleb.config.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
export default {
pinnedPackages: [
{ name: 'chai', reason: 'v5 is pure esm' },
{ name: 'chai-as-promised', reason: 'v8 is pure esm' },
{ name: '@types/chai-as-promised', reason: 'v8 is pure esm' },
{ name: 'sinon-chai', reason: 'v4 requires chai@5' },
{ name: 'chai', reason: 'esm-only' },
{ name: '@types/chai', reason: 'esm-only' },
{ name: 'chai-as-promised', reason: 'esm-only' },
{ name: '@types/chai-as-promised', reason: 'esm-only' },
{ name: 'sinon-chai', reason: 'esm-only' },
{ name: '@types/sinon-chai', reason: 'esm-only' },
],
};

0 comments on commit cee0779

Please sign in to comment.