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 f2246af4e8f37eff8ee9f80477162eb6485aadb9 Author: Randall Leeds <[email protected]> AuthorDate: Tue Aug 4 18:26:37 2020 -0700 Updated supported Node.js versions Only support those versions that correctly implement unflagged ES modules with conditionals exports, or do not support ESM at all. --- README.md | 8 ++++---- package.json | 2 +- packages/dom/package.json | 2 +- packages/selector/package.json | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 5159e74..a7d0698 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,8 @@ $ npm install --save @annotator/dom ##### Requirements -- [node](https://nodejs.org) >= 10.x -- [yarn](https://www.yarnpkg.com/) >= 1.5.1 +- [node](https://nodejs.org) ^10 || ^11 || ^12 || >=13.7 +- [yarn](https://www.yarnpkg.com/) ^1.5 ## Development @@ -31,8 +31,8 @@ $ npm install --save @annotator/dom 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.x -- [yarn](https://www.yarnpkg.com/) >= 1.5.1 +- [node](https://nodejs.org) ^10 || ^11 || ^12 || >=13.7 +- [yarn](https://www.yarnpkg.com/) ^1.5 ##### Setup diff --git a/package.json b/package.json index 2a6d161..c5fb3e2 100644 --- a/package.json +++ b/package.json @@ -79,7 +79,7 @@ "webpack-dev-server": "^3.10.1" }, "engines": { - "node": ">=10.0.0", + "node": "^10 || ^11 || ^12 || >=13.7", "yarn": "^1.5.0" } } diff --git a/packages/dom/package.json b/packages/dom/package.json index be12524..6be8a72 100644 --- a/packages/dom/package.json +++ b/packages/dom/package.json @@ -22,7 +22,7 @@ "@annotator/selector": "^0.1.0" }, "engines": { - "node": ">=10.0.0" + "node": "^10 || ^11 || ^12 || >=13.7" }, "publishConfig": { "access": "public" diff --git a/packages/selector/package.json b/packages/selector/package.json index fc32323..eb6aaa4 100644 --- a/packages/selector/package.json +++ b/packages/selector/package.json @@ -17,7 +17,7 @@ "core-js": "^3.6.4" }, "engines": { - "node": ">=10.0.0" + "node": "^10 || ^11 || ^12 || >=13.7" }, "publishConfig": { "access": "public"
