postcss-merge-rules 4.0.1 → 4.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -137,7 +137,7 @@ function partialMerge(first, second) {
137
137
  };
138
138
  const containsAllDeclaration = intersectionList => {
139
139
  return intersectionList.some(declaration => {
140
- return declaration.split(':')[0] === 'all';
140
+ return declaration.split(':')[0].toLowerCase() === 'all';
141
141
  });
142
142
  };
143
143
  intersection = filterConflicts(getDecls(first).reverse(), intersection);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postcss-merge-rules",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "description": "Merge CSS rules with PostCSS.",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -21,7 +21,7 @@
21
21
  "babel-cli": "^6.0.0",
22
22
  "cross-env": "^5.0.0",
23
23
  "postcss-discard-comments": "^4.0.0",
24
- "postcss-simple-vars": "^4.0.0"
24
+ "postcss-simple-vars": "^5.0.1"
25
25
  },
26
26
  "homepage": "https://github.com/cssnano/cssnano",
27
27
  "author": {
@@ -34,7 +34,7 @@
34
34
  "browserslist": "^4.0.0",
35
35
  "caniuse-api": "^3.0.0",
36
36
  "cssnano-util-same-parent": "^4.0.0",
37
- "postcss": "^6.0.0",
37
+ "postcss": "^7.0.0",
38
38
  "postcss-selector-parser": "^3.0.0",
39
39
  "vendors": "^1.0.0"
40
40
  },