postcss 8.4.45 → 8.4.47

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/lib/container.js CHANGED
@@ -214,6 +214,8 @@ class Container extends Node {
214
214
  i = i.proxyOf
215
215
  if (i.parent) i.parent.removeChild(i)
216
216
  if (i[isClean]) markTreeDirty(i)
217
+
218
+ if (!i.raws) i.raws = {}
217
219
  if (typeof i.raws.before === 'undefined') {
218
220
  if (sample && typeof sample.raws.before !== 'undefined') {
219
221
  i.raws.before = sample.raws.before.replace(/\S/g, '')
package/lib/processor.js CHANGED
@@ -7,7 +7,7 @@ let Root = require('./root')
7
7
 
8
8
  class Processor {
9
9
  constructor(plugins = []) {
10
- this.version = '8.4.45'
10
+ this.version = '8.4.47'
11
11
  this.plugins = this.normalize(plugins)
12
12
  }
13
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postcss",
3
- "version": "8.4.45",
3
+ "version": "8.4.47",
4
4
  "description": "Tool for transforming styles with JS plugins",
5
5
  "engines": {
6
6
  "node": "^10 || ^12 || >=14"
@@ -75,8 +75,8 @@
75
75
  },
76
76
  "dependencies": {
77
77
  "nanoid": "^3.3.7",
78
- "picocolors": "^1.0.1",
79
- "source-map-js": "^1.2.0"
78
+ "picocolors": "^1.1.0",
79
+ "source-map-js": "^1.2.1"
80
80
  },
81
81
  "browser": {
82
82
  "./lib/terminal-highlight": false,