Skip to content

Releases: faceyspacey/extract-css-chunks-webpack-plugin

v4.1.1

27 Mar 03:44
Compare
Choose a tag to compare

4.1.1 (2019-03-27)

Bug Fixes

  • Correct mistake made in implementation of orderWarning option (#159) (0c6ca8e)

v4.1.0

27 Mar 00:51
Compare
Choose a tag to compare

4.1.0 (2019-03-27)

Features

v4.0.2

23 Mar 04:34
Compare
Choose a tag to compare

4.0.2 (2019-03-23)

Bug Fixes

v4.0.1

11 Mar 18:13
7d4b725
Compare
Choose a tag to compare

4.0.1 (2019-03-11)

Bug Fixes

  • broken hot reloading of global styles (#150) (7d4b725)

v4.0.0

05 Mar 06:05
a522101
Compare
Choose a tag to compare

4.0.0 (2019-03-05)

Bug Fixes

  • fixing semantic-release after rewrite (#149) (a522101)

Features

  • new plugin api with integrated HMR loader (#146) (fd6d288)

BREAKING CHANGES

  • New loader API and options.

  • fix: fixed package.json and lock files

  • docs: updating readme and fixing plugin namespaces

v3.3.3

04 Mar 18:26
Compare
Choose a tag to compare

3.3.3 (2019-03-04)

Bug Fixes

v3.3.2

31 Dec 17:05
Compare
Choose a tag to compare

3.3.2 (2018-12-31)

Bug Fixes

v3.3.1

31 Dec 00:13
Compare
Choose a tag to compare

3.3.1 (2018-12-31)

Bug Fixes

v3.3.0

27 Dec 20:53
Compare
Choose a tag to compare

3.3.0 (2018-12-27)

Bug Fixes

  • CSS modules should have better HMR.
  • Updates and renames were also done that appear to have gotton lost
  • Fixed up CSS reloadAll
  • Dont assume CSS modules be default
  • Also fixing css loading order issues that appear during HMR
  • Pulling in a handful of fixes from webpack
  • fixed broken tests
  • New linting rules
  • Editor configs
  • prettier config added
  • commitlint configs added
  • some dependency updates

Features

  • hotLoading: Addressing some issues in HMR (#136) (4993362)

v3.1.2

02 Oct 05:13
6caeeca
Compare
Choose a tag to compare

<a name"3.1.2>

3.1.2 (2018-10-01)

  • fix(index.js): Improved HMR detection multi instance collisions addressed

Merging a PR which improved upon my initial code which allowed the plugin to automatically hot
reload. With the help of React Static, we are able to fix a bug that appeared when building out
build toolchains. This bug causes the pugin to have two seperate context references within webpack
and ends up passing incorrect references to the wrong instance. Deceptivally simple solution was
naming the context key myself.

  • fix(nested-loaders-hmr): Fix n-depth nested loader usage where HMR fails (#103)

HMR doesn't work when loaders are nested

  • fix(nested-loaders-hmr): Fix n-depth nested loader usage where HMR fails (#103)

HMR doesn't work when loaders are nested

  • feat(HMR):Adding the ability to enable hot options.

Like reload all, or css moduels CSS Modules option

  • use throw error, not console error

  • fixing error thrown by empty options object

  • Fix HMR options being ignored (fixes #106) (#107)

options.reloadAll had no effect, because they were incorrectly copied into the webpack's loader.options and could never reach hotModuleReplacement.js. This commit fixes the copy site, allowing for options to pass through. Fixes #106

  • changed context string to match webpack conventions