autoprefixer 9.8.1 → 9.8.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +3 -0
  2. package/package.json +2 -2
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
+ ## 9.8.2
5
+ * Remove old Node.js <13.7 from supported engines, because of buggy ESM support.
6
+
4
7
  ## 9.8.1
5
8
  * Replace `chalk` to `kleur` (by Luke Edwards).
6
9
  * Update docs (by @mbomb007).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autoprefixer",
3
- "version": "9.8.1",
3
+ "version": "9.8.2",
4
4
  "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
5
5
  "keywords": ["autoprefixer", "css", "prefix", "postcss", "postcss-plugin"],
6
6
  "bin": "./bin/autoprefixer",
@@ -12,7 +12,7 @@
12
12
  "license": "MIT",
13
13
  "repository": "postcss/autoprefixer",
14
14
  "engines": {
15
- "node": ">=6.0.0"
15
+ "node": "^6 || ^8 || ^10 || ^12 || >=13.7"
16
16
  },
17
17
  "dependencies": {
18
18
  "browserslist": "^4.12.0",