Skip to content

Commit

Permalink
feat: drop Node 8 & 10 support (mysticatea#16)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Requires Node@^12.0.0 || ^14.0.0 || ^16.0.0 || >=18.0.0
  • Loading branch information
MichaelDeBoey authored Dec 30, 2022
1 parent 2ce1bea commit c0a6702
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
🧪 Test (Node@${{ matrix.node }})
strategy:
matrix:
node: [8.0.0, 8, 10, 12, 14, 16, 18]
node: [12.0.0, 12, 14.0.0, 14, 16.0.0, 16, 18.0.0, 18]
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ A regular expression parser for ECMAScript.
$ npm install @eslint-community/regexpp
```

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

## 📖 Usage

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0-semantically-released",
"description": "Regular expression parser for ECMAScript.",
"engines": {
"node": ">=8"
"node": "^12.0.0 || ^14.0.0 || ^16.0.0 || >=18.0.0"
},
"main": "index",
"files": [
Expand Down

0 comments on commit c0a6702

Please sign in to comment.