Skip to content

Commit 3851eec

Browse files
chore(release): 4.0.0
1 parent a2801e1 commit 3851eec

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [4.0.0](https://github.com/postcss-modules-local-by-default/compare/v4.0.0-rc.5...v4.0.0) - 2020-13-08
7+
8+
### Fixes
9+
10+
- compatibility with other plugins
11+
612
## [4.0.0-rc.5](https://github.com/postcss-modules-local-by-default/compare/v4.0.0-rc.4...v4.0.0-rc.5) - 2020-11-08
713

814
### Fixes

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-modules-values",
3-
"version": "4.0.0-rc.5",
3+
"version": "4.0.0",
44
"description": "PostCSS plugin for CSS Modules to pass arbitrary values between your module files",
55
"main": "src/index.js",
66
"files": [
@@ -46,7 +46,7 @@
4646
"prettier": "^2.1.2"
4747
},
4848
"dependencies": {
49-
"icss-utils": "^5.0.0-rc.0"
49+
"icss-utils": "^5.0.0"
5050
},
5151
"peerDependencies": {
5252
"postcss": "^8.1.0"

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = (options) => {
2020
const definitions = {};
2121

2222
return {
23-
OnceExit(root, postcss) {
23+
Once(root, postcss) {
2424
root.walkAtRules(/value/i, (atRule) => {
2525
const matches = atRule.params.match(matchImports);
2626

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -1872,10 +1872,10 @@ [email protected]:
18721872
dependencies:
18731873
safer-buffer ">= 2.1.2 < 3"
18741874

1875-
icss-utils@^5.0.0-rc.0:
1876-
version "5.0.0-rc.0"
1877-
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.0.0-rc.0.tgz#c72082bd0edaa2cd85b25bfe98db2e49be8d4306"
1878-
integrity sha512-iTcLOd8eGcKQBusS3SRQYCK324r6Aov3GlfWRbRYC9oAp93v1qm7kBWB0WeEjZ3rGoOvymTkQUhOiTokNz9mKg==
1875+
icss-utils@^5.0.0:
1876+
version "5.0.0"
1877+
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.0.0.tgz#03ed56c3accd32f9caaf1752ebf64ef12347bb84"
1878+
integrity sha512-aF2Cf/CkEZrI/vsu5WI/I+akFgdbwQHVE9YRZxATrhH4PVIe6a3BIjwjEcW+z+jP/hNh+YvM3lAAn1wJQ6opSg==
18791879

18801880
ignore@^4.0.6:
18811881
version "4.0.6"

0 commit comments

Comments
 (0)