@wordpress/npm-package-json-lint-config 4.1.1 → 4.1.3-next.d6164808d3.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.
- package/CHANGELOG.md +4 -0
- package/README.md +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
## 4.0.0 (2021-01-21)
|
|
6
6
|
|
|
7
|
+
### Breaking Change
|
|
8
|
+
|
|
9
|
+
- Increase the minimum Node.js version to 14 ([#43141](https://github.com/WordPress/gutenberg/pull/43141)).
|
|
10
|
+
|
|
7
11
|
### Breaking Changes
|
|
8
12
|
|
|
9
13
|
- Increase the minimum Node.js version to 12 ([#27934](https://github.com/WordPress/gutenberg/pull/27934)).
|
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Install the module
|
|
|
10
10
|
$ npm install @wordpress/npm-package-json-lint-config
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
**Note**: This package requires Node.js
|
|
13
|
+
**Note**: This package requires Node.js 14.0.0 or later. It is not compatible with older versions.
|
|
14
14
|
|
|
15
15
|
## Usage
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/npm-package-json-lint-config",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.3-next.d6164808d3.0",
|
|
4
4
|
"description": "WordPress npm-package-json-lint shareable configuration.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"url": "https://github.com/WordPress/gutenberg/issues"
|
|
21
21
|
},
|
|
22
22
|
"engines": {
|
|
23
|
-
"node": ">=
|
|
23
|
+
"node": ">=14"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"index.js"
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "ba8a396d2f418e53a6c4c50575582f3f3eb11ff7"
|
|
36
36
|
}
|