postcss 2.2.2 → 2.2.6
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.
Potentially problematic release.
This version of postcss might be problematic. Click here for more details.
- package/ChangeLog.md +13 -0
- package/README.md +309 -241
- package/lib/at-rule.js +15 -15
- package/lib/comment.js +7 -7
- package/lib/container.js +58 -58
- package/lib/css-syntax-error.js +7 -7
- package/lib/declaration.js +9 -9
- package/lib/list.js +2 -2
- package/lib/map-generator.js +42 -40
- package/lib/node.js +21 -21
- package/lib/parse.js +73 -73
- package/lib/postcss.js +12 -11
- package/lib/previous-map.js +17 -17
- package/lib/result.js +7 -7
- package/lib/root.js +11 -11
- package/lib/rule.js +9 -9
- package/package.json +10 -10
package/ChangeLog.md
CHANGED
@@ -1,3 +1,16 @@
|
|
1
|
+
## 2.2.6
|
2
|
+
* Fix map generation for nodes without source (by Josiah Savary).
|
3
|
+
|
4
|
+
## 2.2.5
|
5
|
+
* Fix source map with BOM marker support (by Mohammad Younes).
|
6
|
+
* Fix source map paths (by Mohammad Younes).
|
7
|
+
|
8
|
+
## 2.2.4
|
9
|
+
* Fix `prepend()` on empty `Root`.
|
10
|
+
|
11
|
+
## 2.2.3
|
12
|
+
* Allow to use object shortcut in `use()` with functions like `autoprefixer`.
|
13
|
+
|
1
14
|
## 2.2.2
|
2
15
|
* Add shortcut to set processors in `use()` via object with `.postcss` property.
|
3
16
|
|