postcss 8.4.4 → 8.4.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/at-rule.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import Container, { ContainerProps } from './container.js'
2
2
 
3
- interface AtRuleRaws {
3
+ interface AtRuleRaws extends Record<string, unknown> {
4
4
  /**
5
5
  * The space symbols before the node. It also stores `*`
6
6
  * and `_` symbols before the declaration (IE hack).
package/lib/comment.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import Container from './container.js'
2
2
  import Node, { NodeProps } from './node.js'
3
3
 
4
- interface CommentRaws {
4
+ interface CommentRaws extends Record<string, unknown> {
5
5
  /**
6
6
  * The space symbols before the node.
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import Container from './container.js'
2
2
  import Node from './node.js'
3
3
 
4
- interface DeclarationRaws {
4
+ interface DeclarationRaws extends Record<string, unknown> {
5
5
  /**
6
6
  * The space symbols before the node. It also stores `*`
7
7
  * and `_` symbols before the declaration (IE hack).
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.4'
10
+ this.version = '8.4.5'
11
11
  this.plugins = this.normalize(plugins)
12
12
  }
13
13
 
package/lib/rule.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import Container, { ContainerProps } from './container.js'
2
2
 
3
- interface RuleRaws {
3
+ interface RuleRaws extends Record<string, unknown> {
4
4
  /**
5
5
  * The space symbols before the node. It also stores `*`
6
6
  * and `_` symbols before the declaration (IE hack).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postcss",
3
- "version": "8.4.4",
3
+ "version": "8.4.5",
4
4
  "description": "Tool for transforming styles with JS plugins",
5
5
  "engines": {
6
6
  "node": "^10 || ^12 || >=14"