Releases: birdofpreyru/babel-plugin-react-css-modules
v6.9.1
- Updates dependencies.
v6.9.0
-
Updates dependencies.
-
Tagged as a minor version update because since this version the compatibility with Node 12 (end-of-life reached on April 30, 2022) is not tested within CI/CD process anymore (because latest versions of libraries being used for testing within CI/CD do not work with Node 12 anymore).
Thus, Node 12 is not officially supported anymore, and Node 14.20.1 (scheduled end-of-life is April 30, 2023) is the minimal officially supported version now.
See also NodeJS Release Schedule.
v6.8.2
Update of dependencies.
v6.8.0
Breaking Change
- [#30] Support of stylesheet loading by CommonJS require(). It will be breaking for you if you actively relied on the fact that previous versions of this plugin only processed files imported like
import '/path/to/style.css';
, and did not process stylesheets imported likerequire('/path/to/style.css);
.
Other Updates
- Fixes a few corner-cases for
replaceImport
feature, introduced in v6.7.0.
v6.7.0
v6.6.1
- [#26] It turned out that the release v6.6.0 could break stuff for people using
webpackHotModuleReloading
option. This release allows to setwebpackHotModuleReloading
equalcommonjs
string, which opts to use pre-v6.6.0 HMR accept code (module.hot
instead ofimport.meta.webpackHot
). - Dependency updates.
v6.6.0
Technically the same as 6.6.0-rc.1:
v6.6.0-rc.1
- Includes PRs #24 and #25 by @pturchik.
- Updates dependencies, and bumps supported node version up to
>=12.x
inpackage.json
.
The changes are not supposed to break anything, but just in case I'll bump the minor release version, and also keep it RC until I have a chance to verify it in my realworld projects. Also pending README update for the new option introduced by #25 .
v6.5.4
Maintenance release, it is not supposed to alter plugin's behavior in any way
Under the hood
- Code style revamp.
- Small README corrections.
- Development dependency updates.