Skip to content

Commit

Permalink
Drop support for node 12
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-marcacci committed Jun 10, 2022
1 parent e3ae78b commit 4676479
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node: ["12", "14", "16", "17"]
node: ["14", "16", "18"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
- Upgrade dependencies.
- Update option types to match changes in @types/node.

### 7.0.0
## 7.0.0

- Upgrade dependencies.
- Prevent Node.js max listeners exceeded warnings if many `fs-capacitor` `ReadStream` instances are created at the same time, fixing [#30](https://github.com/mike-marcacci/fs-capacitor/issues/30) via [#42](https://github.com/mike-marcacci/fs-capacitor/pull/42).
Expand All @@ -107,3 +107,4 @@
### next

- Upgrade development dependencies.
- **BREAKING:** Drop support for node 12.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,13 @@
],
"main": "dist/index.js",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.0.0"
},
"browserslist": {
"production": [
"node >= 12"
"node >= 14"
],
"development": [
"node ^12.22.0",
"node ^14.17.0",
"node >=16.0.0"
]
Expand Down

0 comments on commit 4676479

Please sign in to comment.