You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
webpack: Add source maps for production and development builds. (5c720a4)
We are using a faster source map generation option with good results for
development builds.
webpack: Only minimize in production mode. (a6cf125)
Compile development and production bundles with the name bundle.min.js.
This allows to get rid to adapt the script name in production and development - both modes use the same name.
However, it's only minified in production mode.
We think the name .min.js also fits the development bundle as it is still babel-transpiled and webpack compiled.
Maintenance
docs: Improve documentation on how to use the polyfills loader. (11339af)
webpack: Use automatic publicPath determination instead of manually setting it. (1b61431)