postcss-calc 6.0.1 → 6.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 6.0.2 - 2018-09-25
2
+
3
+ - Fixed: use PostCSS 7 (thanks to @douglasduteil)
4
+
1
5
  # 6.0.1 - 2017-10-10
2
6
 
3
7
  - Fixed: throwing error for attribute selectors without a value
package/README.md CHANGED
@@ -86,7 +86,7 @@ h1 {
86
86
  }
87
87
  ```
88
88
 
89
- Checkout [tests](test) for more examples.
89
+ Checkout [tests](src/__tests__/index.js) for more examples.
90
90
 
91
91
  ### Options
92
92
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postcss-calc",
3
- "version": "6.0.1",
3
+ "version": "6.0.2",
4
4
  "description": "PostCSS plugin to reduce calc()",
5
5
  "keywords": [
6
6
  "css",
@@ -44,7 +44,7 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "css-unit-converter": "^1.1.1",
47
- "postcss": "^6.0.0",
47
+ "postcss": "^7.0.2",
48
48
  "postcss-selector-parser": "^2.2.2",
49
49
  "reduce-css-calc": "^2.0.0"
50
50
  },