Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Releases: webpack-contrib/extract-text-webpack-plugin

v2.1.2

08 Jun 06:58
Compare
Choose a tag to compare

Bug Fixes

Release v2.1.1

08 Jun 05:17
Compare
Choose a tag to compare

2.1.1 (2017-06-08)

Bug Fixes

  • add a not null check for the content property before throwing error (#404) (58dd5d3)
  • loader: rm unnecessary this.cacheable (caching) (#530) (c3cb091)
  • don't extract from common async chunks (#508) (e595417)
  • validation schema (schema-utils) (#527) (dfeb347)

v2.1.0 - Filename customization

05 Mar 09:03
Compare
Choose a tag to compare
  • The plugin filename accepts a function now. c9a19ad, closes #423

Release v2.0.0

24 Feb 17:33
Compare
Choose a tag to compare
chore(release): 2.0.0

v2.0.0 - Release Candidate 3

04 Feb 09:06
Compare
Choose a tag to compare
Pre-release
  • Fix - ajv is marked as a dependency correctly. #381
  • Feature - The plugin accepts ignoreOrder option. This is important to enable if you use CSS Modules. #166
  • Feature - New plugin syntax (consistent with webpack core naming):
use: ExtractTextPlugin.extract({
  fallback: "style-loader",
  use: "css-loader"
})

So go with use instead of loader and fallback over fallbackLoader. The old names still work, but they will give warnings so you remember to fix the naming.


If you have time, please have a look at #366 and #385. Those issues need more information to be fixed for the final release.

v2.0.0-rc.1

28 Jan 11:29
Compare
Choose a tag to compare

2.0.0-rc.1 (2017-01-28)

Bug Fixes

  • options: pass proper loader options to children (#266) (6abf42d)