Skip to content

Releases: samsch/boilerplate-webpack-react

v5.1.0

27 Feb 19:42
Compare
Choose a tag to compare
  • Example app converted to use Hooks from React v16.8.
  • Cleaned up eslint config, and added required setting for eslint react plugin.
  • Removed extraneous core-js dependency.

v5.0.0

27 Feb 19:38
Compare
Choose a tag to compare

Upgraded to Babel 7, switched to css-modules

  • Cleaned up example App.
  • Removed sass-loader.
  • Enabled css-modules as default.
  • Removed CopyWebpackPlugin.
  • Moved index.html to src/.
  • Dropped package-lock.json.

v4.0.1

22 May 15:07
Compare
Choose a tag to compare

Fixed: gitignore now matches the new dist/ build folder.

Updated to Webpack V4

19 May 20:02
Compare
Choose a tag to compare

Updated to Webpack v4

  • Removed explicit uglifyjs plugin
  • Replaced ExtractTextPlugin with MiniCssExtractPlugin
  • Switched entry to index.js to match Weback default
  • Changed build folder to dist to match Webpack default

v3.0.1

16 Feb 21:24
Compare
Choose a tag to compare

#Fixes
Added browserlist for Autoprefixer, with the same browsers as babel-env is using.

#Added
Added support for Object Rest/Spread. This was also supposed to be in v3.0.0, but this release probably could have been a minor instead of patch anyway.

v3.0.0

16 Feb 21:14
Compare
Choose a tag to compare

#Major Changes
Removed Prettier and Prettier Eslint config. Eslint rules are now mostly for likely coding errors, and mostly no longer dictate styles. A couple style rules are still applied (single quote strings, require semi-colons), but often with warnings rather than errors.

Added postcss-loader and Autoprefixer. These should probably have been in since the start, but they're here now! (Unfortunately, it's not properly configured yet.)

Added WebpackCopyPlugin to handle static assets from /public besides just index.html (which has separate handling). Any other files added will be copied to /build on build (and to the in-memory webpack-dev-server resources for development).

#Minor Change
The webpack config for styles has been rewritten to make it easier to modify (such as for adding css-module support).

#But...
Don't use this version yet. The next patch will correctly setup browserlist for Autoprefixer!

Minor dependency update

16 Feb 20:28
Compare
Choose a tag to compare

Final v2 release. This gets everything up to date as there won't be continuing support.