Skip to content

Commit 4d57368

Browse files
committedDec 12, 2021
Change Node.js support to ^12.20.0, ^14.13.0 and >=15.0.0
1 parent 80c57ec commit 4d57368

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed
 

‎CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
- Allowed args after and between options
44
- Replaced `chalk` with `ansi-colors`
5-
- Migrated to ESM (CommonJS is still supported)
5+
- Package
6+
- Changed supported versions of Node.js to `^12.20.0`, `^14.13.0` and `>=15.0.0`
7+
- Converted to ESM. CommonJS is supported as well (dual module)
68

79
## 3.0.0-beta.1
810

‎package-lock.json

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
"lib"
2828
],
2929
"engines": {
30-
"node": ">=8.0.0"
30+
"node": "^12.20.0 || ^14.13.0 || >=15.0.0",
31+
"npm": ">=7.0.0"
3132
},
3233
"dependencies": {
3334
"ansi-colors": "^4.1.1"

0 commit comments

Comments
 (0)
Please sign in to comment.