Skip to content

Commit

Permalink
changing order of entrypoints files
Browse files Browse the repository at this point in the history
I'm not sure why this is happening, but we kind of need to trust that
Webpack will be putting files in the correct order
  • Loading branch information
weaverryan committed May 6, 2020
1 parent d7903e4 commit d49352b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/functional.js
Original file line number Diff line number Diff line change
Expand Up @@ -2697,12 +2697,12 @@ module.exports = {
webpackAssert.assertOutputJsonFileMatches('entrypoints.json', {
entrypoints: {
main: {
js: ['/build/runtime.js', '/build/0.js', '/build/1.js', '/build/main.js'],
css: ['/build/1.css']
js: ['/build/runtime.js', '/build/1.js', '/build/0.js', '/build/main.js'],
css: ['/build/0.css']
},
other: {
js: ['/build/runtime.js', '/build/0.js', '/build/1.js', '/build/other.js'],
css: ['/build/1.css']
js: ['/build/runtime.js', '/build/1.js', '/build/0.js', '/build/other.js'],
css: ['/build/0.css']
}
}
});
Expand Down

0 comments on commit d49352b

Please sign in to comment.