This website requires JavaScript.
Explore
Help
Sign In
root
/
webpack
mirror of
https://github.com/webpack/webpack.git
Watch
1
Star
0
Fork
You've already forked webpack
0
Code
Issues
Actions
1
Packages
Projects
Releases
Wiki
Activity
3f9e6d5ec6
webpack
/
test
/
configCases
/
async-commons-chunk
/
all-selected
/
webpack.config.js
8 lines
77 B
JavaScript
Raw
Normal View
History
Unescape
Escape
fix a bug that prevented the automatic chunk selection to select initial chunks fixes #5145 fixes #5386 fixes #5285 fixes #5109
2017-07-27 20:32:35 +08:00
module
.
exports
=
{
Refactor chunk graph Chunks are now always in ChunkGroups ChunkGroups have parents and children, Chunks no longer have this AsyncDependenciesBlocks point to a ChunkGroup instead of a list of chunks Entrypoint is now a ChunkGroup (extends from it) move stuff graph modification methods into GraphHelpers Change chunk id recording to source-based Chunks have parents, siblings and children in Stats rename AutomaticCommonsChunksPlugin to SplitChunksPlugin add request property to origin (ChunkGroup) remove moveToParent from AggressiveMergingPlugin fix issues with AggressiveSplittingPlugin remove CommonsChunkPlugin add optimization.runtimeChunk (RuntimeChunkPlugin) fix a filename bug for initial chunks remove extract-text-webpack-plugin from test suite add DebugHash to help debugging hash issues fix issues with entry modules in different chunk as runtime redo optimization.splitChunks options Compilation.entrypoints is now a Map Compilation.chunkGroups has been added remove some unittests update examples update tests with CommonsChunkPlugin
2018-01-20 00:06:59 +08:00
optimization
:
{
splitChunks
:
{
minSize
:
1
}
}
fix a bug that prevented the automatic chunk selection to select initial chunks fixes #5145 fixes #5386 fixes #5285 fixes #5109
2017-07-27 20:32:35 +08:00
}
;