@wordpress/babel-plugin-import-jsx-pragma 4.41.0 → 5.0.1

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
@@ -14,7 +14,7 @@ Install the module to your project using [npm](https://www.npmjs.com/).
14
14
  npm install @wordpress/babel-plugin-import-jsx-pragma
15
15
  ```
16
16
 
17
- **Note**: This package requires Node.js 14.0.0 or later. It is not compatible with older versions.
17
+ **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.
18
18
 
19
19
  ## Usage
20
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/babel-plugin-import-jsx-pragma",
3
- "version": "4.41.0",
3
+ "version": "5.0.1",
4
4
  "description": "Babel transform plugin for automatically injecting an import to be used as the pragma for the React JSX Transform plugin.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -24,7 +24,8 @@
24
24
  "url": "https://github.com/WordPress/gutenberg/issues"
25
25
  },
26
26
  "engines": {
27
- "node": ">=14"
27
+ "node": ">=18.12.0",
28
+ "npm": ">=8.19.2"
28
29
  },
29
30
  "files": [
30
31
  "index.js"
@@ -36,5 +37,5 @@
36
37
  "publishConfig": {
37
38
  "access": "public"
38
39
  },
39
- "gitHead": "42f38f287506a6b3ed8ccba839b18ad066821044"
40
+ "gitHead": "0e973525f7787401b5a544e0727774d52a78639f"
40
41
  }