postcss 8.1.3 → 8.1.4

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/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # Change Log
2
2
  This project adheres to [Semantic Versioning](http://semver.org/).
3
3
 
4
+ ## 8.1.4
5
+ * Fix TypeScript definition (by Arthur Petrie).
6
+
4
7
  ## 8.1.3
5
8
  * Added `package.types`.
6
9
 
package/lib/postcss.d.ts CHANGED
@@ -409,8 +409,10 @@ export interface Postcss {
409
409
  }
410
410
 
411
411
  export const stringify: Stringifier
412
- export const atRule: Postcss['atRule']
413
412
  export const parse: Parser
413
+
414
+ export const comment: Postcss['comment']
415
+ export const atRule: Postcss['atRule']
414
416
  export const decl: Postcss['decl']
415
417
  export const rule: Postcss['rule']
416
418
  export const root: Postcss['root']
package/lib/processor.js CHANGED
@@ -5,7 +5,7 @@ let Root = require('./root')
5
5
 
6
6
  class Processor {
7
7
  constructor (plugins = []) {
8
- this.version = '8.1.3'
8
+ this.version = '8.1.4'
9
9
  this.plugins = this.normalize(plugins)
10
10
  }
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postcss",
3
- "version": "8.1.3",
3
+ "version": "8.1.4",
4
4
  "description": "Tool for transforming styles with JS plugins",
5
5
  "engines": {
6
6
  "node": "^10 || ^12 || >=14"