Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Oct 5, 2021
1 parent 82179a2 commit cd8ffe4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions scripts/buildUtils.js
Expand Up @@ -52,10 +52,12 @@ module.exports.getPackages = function getPackages() {
{},
),
...(pkg.name === 'jest-circus' ? {'./runner': './runner.js'} : {}),
...(pkg.name === 'expect' ? {
'./build/utils': './build/utils.js',
'./build/matchers': './build/matchers.js',
} : {}),
...(pkg.name === 'expect'
? {
'./build/matchers': './build/matchers.js',
'./build/utils': './build/utils.js',
}
: {}),
},
`Package ${pkg.name} does not export correct files`,
);
Expand Down

0 comments on commit cd8ffe4

Please sign in to comment.