@wordpress/docgen 1.67.0 → 2.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 +2 -0
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -16,6 +16,8 @@ Install the module
16
16
  npm install @wordpress/docgen --save-dev
17
17
  ```
18
18
 
19
+ **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.
20
+
19
21
  ## Usage
20
22
 
21
23
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/docgen",
3
- "version": "1.67.0",
3
+ "version": "2.0.0",
4
4
  "description": "Autogenerate public API documentation from exports and JSDoc comments.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -19,6 +19,10 @@
19
19
  "bugs": {
20
20
  "url": "https://github.com/WordPress/gutenberg/issues"
21
21
  },
22
+ "engines": {
23
+ "node": ">=18.12.0",
24
+ "npm": ">=8.19.2"
25
+ },
22
26
  "files": [
23
27
  "bin",
24
28
  "lib"
@@ -38,5 +42,5 @@
38
42
  "publishConfig": {
39
43
  "access": "public"
40
44
  },
41
- "gitHead": "42f38f287506a6b3ed8ccba839b18ad066821044"
45
+ "gitHead": "2f30cddff15723ac7017fd009fc5913b7b419400"
42
46
  }