@wordpress/jest-console 7.29.0 → 8.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 +4 -3
package/README.md CHANGED
@@ -18,7 +18,7 @@ Install the module:
18
18
  npm install @wordpress/jest-console --save-dev
19
19
  ```
20
20
 
21
- **Note**: This package requires Node.js 14.0.0 or later. It is not compatible with older versions.
21
+ **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.
22
22
 
23
23
  ### Setup
24
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/jest-console",
3
- "version": "7.29.0",
3
+ "version": "8.0.0",
4
4
  "description": "Custom Jest matchers for the Console object.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -21,7 +21,8 @@
21
21
  "url": "https://github.com/WordPress/gutenberg/issues"
22
22
  },
23
23
  "engines": {
24
- "node": ">=14"
24
+ "node": ">=18.12.0",
25
+ "npm": ">=8.19.2"
25
26
  },
26
27
  "files": [
27
28
  "build",
@@ -41,5 +42,5 @@
41
42
  "publishConfig": {
42
43
  "access": "public"
43
44
  },
44
- "gitHead": "42f38f287506a6b3ed8ccba839b18ad066821044"
45
+ "gitHead": "2f30cddff15723ac7017fd009fc5913b7b419400"
45
46
  }