Skip to content

Release 6.4.0

Compare
Choose a tag to compare
@thet thet released this 24 Jan 22:34
· 1198 commits to master since this release

6.4.0 (2022-01-24)

Features

  • 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)