Skip to content

Commit cf6cb22

Browse files
committed
feat: drop Node 8 & 10 support
BREAKING CHANGE: Requires Node@^12.0.0 || ^14.0.0 || ^16.0.0 || ^18.0.0
1 parent b84cecf commit cf6cb22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
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

package.json

Lines changed: 1 addition & 1 deletion
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)