Skip to content

Commit

Permalink
chore: drop support for node14
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Support for node14 is dropped,
due to its EOL in the next month and missing ESM module support

Signed-off-by: Pascal Sthamer <[email protected]>
  • Loading branch information
P4sca1 committed Mar 30, 2023
1 parent 3330f72 commit d47ac6a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ workflows:
matrix:
parameters:
version:
- "14.21"
- "16.19"
- "18.15"
- release:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Via yarn:

`$ yarn add cron-schedule`

**We test our code against the following Node.js releases (`14.21`, `16.19`, `18.15`).**
**We test our code against the following Node.js releases (`16.19`, `18.15`).**
Other versions of node.js may also work, but this is not tested.

##### Usage
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
"nodejs"
],
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=16"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
Expand Down Expand Up @@ -110,6 +114,5 @@
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "[email protected]"
}
}

0 comments on commit d47ac6a

Please sign in to comment.