This is an automated email from the ASF dual-hosted git repository. randall pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git
commit 0123e79fd550879f2d8d056fdb9b63d58506131d Author: Randall Leeds <[email protected]> AuthorDate: Sat Apr 3 19:49:32 2021 -0700 Bump minimum Node.js versions With Node.js v10 soon reaching end-of-life and stable support for export patterns and CommonJS named exports shipping in v12, v14, and v15, remove support for any Node.js versions that do not support these features to simplify packaging compatibility. --- README.md | 2 +- package.json | 2 +- packages/apache-annotator/package.json | 2 +- packages/dom/package.json | 2 +- packages/selector/package.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 381ad39..ccbbcf4 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ and resolve Web Annotation Selectors. We use [Lerna](https://lernajs.io/) to juggle the various Apache Annotator libraries. If you'd like to contribute, you'll need the following: -- [node](https://nodejs.org) ^10 || ^11 || ^12 || >=13.7 +- [node](https://nodejs.org) ^12.20 || ^14.15 || ^15.4 - [yarn](https://www.yarnpkg.com/) ^1.5 #### Setup diff --git a/package.json b/package.json index f1537d2..2c6e55f 100644 --- a/package.json +++ b/package.json @@ -84,7 +84,7 @@ "webpack-dev-server": "^3.10.1" }, "engines": { - "node": "^10 || ^11 || ^12 || >=13.7", + "node": "^12.20 || ^14.15 || ^15.4", "yarn": "^1.5.0" } } diff --git a/packages/apache-annotator/package.json b/packages/apache-annotator/package.json index 4c29036..8b1b7ef 100644 --- a/packages/apache-annotator/package.json +++ b/packages/apache-annotator/package.json @@ -33,7 +33,7 @@ "@babel/runtime-corejs3": "^7.12.5" }, "engines": { - "node": "^10 || ^11 || ^12 || >=13.7" + "node": "^12.20 || ^14.15 || ^15.4" }, "publishConfig": { "access": "public" diff --git a/packages/dom/package.json b/packages/dom/package.json index 588b819..1aaf06f 100644 --- a/packages/dom/package.json +++ b/packages/dom/package.json @@ -24,7 +24,7 @@ "@apache-annotator/selector": "^0.1.0" }, "engines": { - "node": "^10 || ^11 || ^12 || >=13.7" + "node": "^12.20 || ^14.15 || ^15.4" }, "publishConfig": { "access": "public" diff --git a/packages/selector/package.json b/packages/selector/package.json index d7f230e..4963fc2 100644 --- a/packages/selector/package.json +++ b/packages/selector/package.json @@ -21,7 +21,7 @@ "@babel/runtime-corejs3": "^7.12.5" }, "engines": { - "node": "^10 || ^11 || ^12 || >=13.7" + "node": "^12.20 || ^14.15 || ^15.4" }, "publishConfig": { "access": "public"
