Skip to content

Releases: taniarascia/webpack-boilerplate

v3.0.2

04 Jan 02:36
Compare
Choose a tag to compare

Bring all packages up to date.

v3.0.0

15 Oct 05:06
Compare
Choose a tag to compare
  • Updated all dependencies to latest
  • Removed prettier and eslint webpack plugins
  • Removed ESLint rules for formatting prettier
  • Ensured public folder assets work in CSS background images and production build
  • Added prettify script

v2.0.1

01 Apr 12:57
Compare
Choose a tag to compare

Updated and patched all packages April 1, 2021. Removed errors from ESLint, preferring warnings so users can make their own choices and it does not block the build.

Version 2.0.0 - webpack 5 upgrade

14 Oct 01:09
Compare
Choose a tag to compare

webpack 5 compatibility upgrade.

Changed

  • Updated webpack to version 5
  • Removed cssnano, url-loader, file-loader, updated several other dependencies
  • Update webpack-dev-server to webpack serve
  • Update inline assets and resources to webpack 5 defaults

Note

You will see this error when building:

ebpack-boilerplate@2.0.0 build /Users/taniarascia/dev/sandbox/webpack-boilerplate
> cross-env NODE_ENV=production webpack --config config/webpack.prod.js

(node:34280) [DEP_WEBPACK_COMPILATION_OPTIMIZE_CHUNK_ASSETS] DeprecationWarning: optimizeChunkAssets is deprecated (use Compilation.hook.processAssets instead and use one of Compilation.PROCESS_ASSETS_STAGE_* as stage option)
(Use `node --trace-deprecation ...` to show where the warning was created)
(node:34280) [DEP_WEBPACK_COMPILATION_ASSETS] DeprecationWarning: Compilation.assets will be frozen in future, all modifications are deprecated.
BREAKING CHANGE: No more changes should happen to Compilation.assets after sealing the Compilation.
	Do changes to assets earlier, e. g. in Compilation.hooks.processAssets.
	Make sure to select an appropriate stage from Compilation.PROCESS_ASSETS_STAGE_*.

This is from the HTML webpack plugin. See issue here: jantimon/html-webpack-plugin#1501