- Fixed
__dirnameand__filenamein server-side builds
- Fixes server bundle not yet has been written to disk
- Added
silentoption (won't output client side webpack build stats to console; e.g. when usingwebpack-dashboard)
serverrunning function now returns aPromisewith a result of whatever is returned from the user suppliedserver(parameters)function
devtoolsis now a function
development: falseoption now automatically extracts styles withextract-text-webpack-plugin(unlesscss_bundleisfalse) (the CSS bundle filename can be customized withcss_bundle: "filename.css")
- Constrained "flash of unstyled content" fix to setting an additional flag:
css_bundle. Because this feature can introduce a bug if used unproperly.
- Added the third parameter to Webpack configuration creators. The parameter added is an object of options. It can have a property called
developmentwithtrue/falsevalue. It is used in client-side configuration creation to solve the "flash of unstyled content" on page reload.
- Plugin removal bug fix
- Added
exclude_from_externalsmodule - Covered external modules resolution with tests
- Removing
CommonsChunkPluginfrom server-side configuration
- Removing
HotModuleReplacementPluginfrom server-side configuration
@papigersfixed server-side code error swallowing
- Fixing
webpack-dev-serveroverwritingconfiguration.output.path
- Now replacing
style-loaderwithfake-style-loaderfor server-side Webpack configuration
- Fixed
ExtractTextPlugin
- Fixed
resolve.alias - Fixed Babel export issues during server-side code importing
- Fixed "Cannot find module 'colors/safe'"
- Fixed hot reload on server-side (restarts Node.js (Nodemon) on code changes)
- Removed the global
_server_variable (too specific for the project, anyone can set it using Webpack'sDefinePlugininsidewebpack.config.server.js)
- Initial release