Skip to content

Commit

Permalink
feat: drop support for Node 14 (#383)
Browse files Browse the repository at this point in the history
  • Loading branch information
wKovacs64 committed May 6, 2023
1 parent 6711b59 commit b837a57
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/breezy-rice-smash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'hibp': major
---

Drop support for Node.js 14 as it is [end-of-life](https://nodejs.org/en/about/releases/), making the new minimum Node.js runtime v16.0.0. Please upgrade your Node.js environment if necessary, or continue using a previous release if you are unable to upgrade your environment.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
},
"homepage": "https://wkovacs64.github.io/hibp",
"engines": {
"node": ">= 14.13.1"
"node": ">= 16.0.0"
},
"dependencies": {
"@remix-run/web-fetch": "^4.3.2",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { getBabelOutputPlugin } from '@rollup/plugin-babel';
import replace from '@rollup/plugin-replace';
import terser from '@rollup/plugin-terser';

const supportedNodeVersion = '14.13.1';
const supportedNodeVersion = '16.0.0';
const inputs = globSync('src/**/*.ts', {
ignore: [
'**/__mocks__/**',
Expand Down

0 comments on commit b837a57

Please sign in to comment.