postcss 8.3.4 → 8.3.5

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/lib/container.js CHANGED
@@ -422,6 +422,8 @@ Container.rebuild = node => {
422
422
  Object.setPrototypeOf(node, Comment.prototype)
423
423
  }
424
424
 
425
+ node[my] = true
426
+
425
427
  if (node.nodes) {
426
428
  node.nodes.forEach(child => {
427
429
  Container.rebuild(child)
package/lib/processor.js CHANGED
@@ -6,7 +6,7 @@ let Root = require('./root')
6
6
 
7
7
  class Processor {
8
8
  constructor(plugins = []) {
9
- this.version = '8.3.4'
9
+ this.version = '8.3.5'
10
10
  this.plugins = this.normalize(plugins)
11
11
  }
12
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postcss",
3
- "version": "8.3.4",
3
+ "version": "8.3.5",
4
4
  "description": "Tool for transforming styles with JS plugins",
5
5
  "engines": {
6
6
  "node": "^10 || ^12 || >=14"