Skip to content

Commit d49352b

Browse files
committed
changing order of entrypoints files
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
1 parent d7903e4 commit d49352b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/functional.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2697,12 +2697,12 @@ module.exports = {
26972697
webpackAssert.assertOutputJsonFileMatches('entrypoints.json', {
26982698
entrypoints: {
26992699
main: {
2700-
js: ['/build/runtime.js', '/build/0.js', '/build/1.js', '/build/main.js'],
2701-
css: ['/build/1.css']
2700+
js: ['/build/runtime.js', '/build/1.js', '/build/0.js', '/build/main.js'],
2701+
css: ['/build/0.css']
27022702
},
27032703
other: {
2704-
js: ['/build/runtime.js', '/build/0.js', '/build/1.js', '/build/other.js'],
2705-
css: ['/build/1.css']
2704+
js: ['/build/runtime.js', '/build/1.js', '/build/0.js', '/build/other.js'],
2705+
css: ['/build/0.css']
27062706
}
27072707
}
27082708
});

0 commit comments

Comments
 (0)