postcss 8.4.10 → 8.4.13

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
@@ -326,7 +326,7 @@ class Container extends Node {
326
326
  i.raws.before = sample.raws.before.replace(/\S/g, '')
327
327
  }
328
328
  }
329
- i.parent = this
329
+ i.parent = this.proxyOf
330
330
  return i
331
331
  })
332
332
 
@@ -21,7 +21,7 @@ interface DeclarationRaws extends Record<string, unknown> {
21
21
  /**
22
22
  * Declaration value with comments.
23
23
  */
24
- value: {
24
+ value?: {
25
25
  value: string
26
26
  raw: string
27
27
  }
@@ -72,7 +72,7 @@ export default class Processor {
72
72
  * ```
73
73
  *
74
74
  * @param plugin PostCSS plugin or `Processor` with plugins.
75
- * @return {Processes} Current processor to make methods chain.
75
+ * @return Current processor to make methods chain.
76
76
  */
77
77
  use(plugin: AcceptedPlugin): this
78
78
 
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.10'
10
+ this.version = '8.4.13'
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.10",
3
+ "version": "8.4.13",
4
4
  "description": "Tool for transforming styles with JS plugins",
5
5
  "engines": {
6
6
  "node": "^10 || ^12 || >=14"
@@ -56,7 +56,7 @@
56
56
  "funding": [
57
57
  {
58
58
  "type": "opencollective",
59
- "url": "https://opencollective.com/postcss"
59
+ "url": "https://opencollective.com/postcss/"
60
60
  },
61
61
  {
62
62
  "type": "tidelift",
@@ -71,7 +71,7 @@
71
71
  "url": "https://github.com/postcss/postcss/issues"
72
72
  },
73
73
  "dependencies": {
74
- "nanoid": "^3.3.1",
74
+ "nanoid": "^3.3.3",
75
75
  "picocolors": "^1.0.0",
76
76
  "source-map-js": "^1.0.2"
77
77
  },