Skip to content

Commit c0a6702

Browse files
feat: drop Node 8 & 10 support (#16)
BREAKING CHANGE: Requires Node@^12.0.0 || ^14.0.0 || ^16.0.0 || >=18.0.0
1 parent 2ce1bea commit c0a6702

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
🧪 Test (Node@${{ matrix.node }})
4141
strategy:
4242
matrix:
43-
node: [8.0.0, 8, 10, 12, 14, 16, 18]
43+
node: [12.0.0, 12, 14.0.0, 14, 16.0.0, 16, 18.0.0, 18]
4444
runs-on: ubuntu-latest
4545
steps:
4646
- name: 🛑 Cancel Previous Runs

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A regular expression parser for ECMAScript.
1313
$ npm install @eslint-community/regexpp
1414
```
1515

16-
- require Node.js 8 or newer.
16+
- require Node@^12.0.0 || ^14.0.0 || ^16.0.0 || >=18.0.0.
1717

1818
## 📖 Usage
1919

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0-semantically-released",
44
"description": "Regular expression parser for ECMAScript.",
55
"engines": {
6-
"node": ">=8"
6+
"node": "^12.0.0 || ^14.0.0 || ^16.0.0 || >=18.0.0"
77
},
88
"main": "index",
99
"files": [

0 commit comments

Comments
 (0)