postcss 8.4.0 → 8.4.1

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/processor.js CHANGED
@@ -7,7 +7,7 @@ let NoWorkResult = require('./no-work-result')
7
7
 
8
8
  class Processor {
9
9
  constructor(plugins = []) {
10
- this.version = '8.4.0'
10
+ this.version = '8.4.1'
11
11
  this.plugins = this.normalize(plugins)
12
12
  }
13
13
 
@@ -10,7 +10,8 @@ import {
10
10
  Container
11
11
  } from './postcss.js'
12
12
 
13
- export class Stringifier {
13
+ export default class Stringifier {
14
+ builder: Builder
14
15
  constructor(builder: Builder)
15
16
  stringify(node: AnyNode, semicolon?: boolean): void
16
17
  document(node: Document): void
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postcss",
3
- "version": "8.4.0",
3
+ "version": "8.4.1",
4
4
  "description": "Tool for transforming styles with JS plugins",
5
5
  "engines": {
6
6
  "node": "^10 || ^12 || >=14"