Skip to content

Releases: webpack-contrib/mini-css-extract-plugin

v1.3.1

12 Nov 18:58
Compare
Choose a tag to compare

1.3.1 (2020-11-12)

Bug Fixes

v1.3.0

06 Nov 14:06
Compare
Choose a tag to compare

1.3.0 (2020-11-06)

⚠ POTENTIAL BREAKING CHANGE

Options are now validated according to stricter rules - no unknown additional properties. For example, if you have not removed the hmr option for the loader when migrating to mini-css-extract-plugin@1, you will get an error. Just remove them from your configuration(s). We did this because many developers started making these mistakes.

Features

  • added the type property for loading errors (#651) (be9ddcb)

Bug Fixes

v1.2.1

27 Oct 14:33
Compare
Choose a tag to compare

1.2.1 (2020-10-27)

Bug Fixes

v1.2.0

23 Oct 19:23
Compare
Choose a tag to compare

1.2.0 (2020-10-23)

Features

Bug Fixes

  • compatibility with webpack@4 and webpack@5 for monorepos (#638) (60c3eef)

v1.1.2

22 Oct 21:20
Compare
Choose a tag to compare

1.1.2 (2020-10-22)

Bug Fixes

  • compatibility with webpack@4 and webpack@5 for monorepos (#636) (3413439)
  • error when reloading async chunk (#633) (89e7a0a)

v1.1.1

20 Oct 14:43
Compare
Choose a tag to compare

1.1.1 (2020-10-20)

Bug Fixes

  • fix onerror message for async chunks (#629) (883079e)

v1.1.0

19 Oct 16:50
Compare
Choose a tag to compare

1.1.0 (2020-10-19)

Features

  • added the attributes option (e8a2d5a)
  • added the insert option (a5f17c4)

Bug Fixes

v1.0.0

09 Oct 12:46
Compare
Choose a tag to compare

BREAKING CHANGE

  • minimum supported Node.js version is 10.13.0
  • the esModule option is true by default, you need to change const locals = require('./styles.css')/require('./styles.css') on import locals from './styles.css'/import './styles.css''
  • the moduleFilename option was removed in favor the filename option
  • the hmr option was removed, HMR will work automatically when HotModuleReplacement plugin used or webpack-dev-server with enabled the hot option
  • the reloadAll was removed

Features

  • the chunkFilename option can be a function for webpack@5

⚠ NOTICE

To avoid problems between mini-css-extract-plugin and style-loader because of changing the esModule option to true by default we strongly recommend upgrading style-loader to 2.0.0 version.

v0.12.0

07 Oct 12:22
Compare
Choose a tag to compare

0.12.0 (2020-10-07)

Features

  • opt-in to transitive only side effects (webpack@5), no more empty JS chunks

v0.11.3

02 Oct 13:21
Compare
Choose a tag to compare

0.11.3 (2020-10-02)

Bug Fixes