@wordpress/postcss-plugins-preset 4.41.0 → 5.0.0

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/README.md +1 -1
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -10,7 +10,7 @@ Install the module
10
10
  npm install @wordpress/postcss-plugins-preset --save
11
11
  ```
12
12
 
13
- **Note**: This package requires Node.js 14.0.0 or later. It is not compatible with older versions.
13
+ **Note**: This package requires Node.js version with long-term support status (check [Active LTS or Maintenance LTS releases](https://nodejs.org/en/about/previous-releases)). It is not compatible with older versions.
14
14
 
15
15
  ## Contributing to this package
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/postcss-plugins-preset",
3
- "version": "4.41.0",
3
+ "version": "5.0.0",
4
4
  "description": "PostCSS sharable plugins preset for WordPress development.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -22,14 +22,15 @@
22
22
  "url": "https://github.com/WordPress/gutenberg/issues"
23
23
  },
24
24
  "engines": {
25
- "node": ">=14"
25
+ "node": ">=18.12.0",
26
+ "npm": ">=8.19.2"
26
27
  },
27
28
  "files": [
28
29
  "lib"
29
30
  ],
30
31
  "main": "lib/index.js",
31
32
  "dependencies": {
32
- "@wordpress/base-styles": "^4.48.0",
33
+ "@wordpress/base-styles": "^5.0.0",
33
34
  "autoprefixer": "^10.2.5"
34
35
  },
35
36
  "peerDependencies": {
@@ -38,5 +39,5 @@
38
39
  "publishConfig": {
39
40
  "access": "public"
40
41
  },
41
- "gitHead": "581d8a5580dba8f600b7268d51eb554771ae482c"
42
+ "gitHead": "2f30cddff15723ac7017fd009fc5913b7b419400"
42
43
  }