postcss 8.2.5 → 8.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 +4 -0
- package/lib/container.d.ts +1 -1
- package/lib/node.js +1 -1
- package/lib/processor.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
# Change Log
|
2
2
|
This project adheres to [Semantic Versioning](https://semver.org/).
|
3
3
|
|
4
|
+
## 8.2.6
|
5
|
+
* Fixed `Maximum call stack size exceeded` in `Node#toJSON`.
|
6
|
+
* Fixed docs (by inokawa).
|
7
|
+
|
4
8
|
## 8.2.5
|
5
9
|
* Fixed escaped characters handling in `list.split` (by Natalie Weizenbaum).
|
6
10
|
|
package/lib/container.d.ts
CHANGED
@@ -298,7 +298,7 @@ export default abstract class Container extends Node {
|
|
298
298
|
* Add child to the end of the node.
|
299
299
|
*
|
300
300
|
* ```js
|
301
|
-
* rule.push(new Declaration({ prop: 'color', value: 'black' }
|
301
|
+
* rule.push(new Declaration({ prop: 'color', value: 'black' }))
|
302
302
|
* ```
|
303
303
|
*
|
304
304
|
* @param child New node.
|
package/lib/node.js
CHANGED
package/lib/processor.js
CHANGED