We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82179a2 commit cd8ffe4Copy full SHA for cd8ffe4
scripts/buildUtils.js
@@ -52,10 +52,12 @@ module.exports.getPackages = function getPackages() {
52
{},
53
),
54
...(pkg.name === 'jest-circus' ? {'./runner': './runner.js'} : {}),
55
- ...(pkg.name === 'expect' ? {
56
- './build/utils': './build/utils.js',
57
- './build/matchers': './build/matchers.js',
58
- } : {}),
+ ...(pkg.name === 'expect'
+ ? {
+ './build/matchers': './build/matchers.js',
+ './build/utils': './build/utils.js',
59
+ }
60
+ : {}),
61
},
62
`Package ${pkg.name} does not export correct files`,
63
);
0 commit comments