postcss 8.2.6 → 8.2.7

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](https://semver.org/).
3
3
 
4
+ ## 8.2.7
5
+ * Fixed browser builds in webpack 5 (by Matt Jones).
6
+
4
7
  ## 8.2.6
5
8
  * Fixed `Maximum call stack size exceeded` in `Node#toJSON`.
6
9
  * Fixed docs (by inokawa).
package/README.md CHANGED
@@ -47,7 +47,10 @@ PostCSS needs your support. We are accepting donations
47
47
 
48
48
  <a href="https://tailwindcss.com/">
49
49
  <img src="https://refactoringui.nyc3.cdn.digitaloceanspaces.com/tailwind-logo.svg"
50
- alt="Sponsored by Tailwind CSS" width="273" height="64">
50
+ alt="Sponsored by Tailwind CSS" width="213" height="50">
51
+ </a>      <a href="https://themeisle.com/">
52
+ <img src="https://mllj2j8xvfl0.i.optimole.com/d0cOXWA.3970~373ad/w:auto/h:auto/q:90/https://s30246.pcdn.co/wp-content/uploads/2019/03/logo.png"
53
+ alt="Sponsored by ThemeIsle" width="171" height="56">
51
54
  </a>
52
55
 
53
56
 
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.2.6'
8
+ this.version = '8.2.7'
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.2.6",
3
+ "version": "8.2.7",
4
4
  "description": "Tool for transforming styles with JS plugins",
5
5
  "engines": {
6
6
  "node": "^10 || ^12 || >=14"
@@ -35,13 +35,14 @@
35
35
  "homepage": "https://postcss.org/",
36
36
  "repository": "postcss/postcss",
37
37
  "dependencies": {
38
- "colorette": "^1.2.1",
38
+ "colorette": "^1.2.2",
39
39
  "nanoid": "^3.1.20",
40
40
  "source-map": "^0.6.1"
41
41
  },
42
42
  "browser": {
43
43
  "./lib/terminal-highlight": false,
44
44
  "colorette": false,
45
- "fs": false
45
+ "fs": false,
46
+ "path": false
46
47
  }
47
48
  }