From 69f3a0d2d106d67a88c7e4f6522fe565713198ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Connor=20B=C3=A4r?= Date: Fri, 21 Aug 2020 11:53:30 +0200 Subject: [PATCH] fix: reduce minimum Node version to v10+ There's no real reason why v10.18+ is required, v10+ is perfectly adequate. --- README.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b2f3bd2..9937e07 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Format 🔢 numbers and 💱currency values for any locale with the [ECMAScript ## Installation -[`@sumup/intl`](https://www.npmjs.com/package/sumup/intl) needs to be installed as a dependency via the [Yarn](https://yarnpkg.com) or [npm](https://www.npmjs.com) package managers. The npm CLI ships with [Node](https://nodejs.org/en/). You can read how to install the Yarn CLI in [their documentation](https://yarnpkg.com/en/docs/install). `@sumup/intl` requires Node v10.18+. +[`@sumup/intl`](https://www.npmjs.com/package/sumup/intl) needs to be installed as a dependency via the [Yarn](https://yarnpkg.com) or [npm](https://www.npmjs.com) package managers. The npm CLI ships with [Node](https://nodejs.org/en/). You can read how to install the Yarn CLI in [their documentation](https://yarnpkg.com/en/docs/install). `@sumup/intl` requires Node v10+. Depending on your preference, run one of the following: diff --git a/package.json b/package.json index 23b18b1..233e593 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "check:licenses": "license-checker --production --summary --failOn=GPLv3" }, "engines": { - "node": ">=10.18.0" + "node": ">=10" }, "dependencies": { "intl-format-cache": "^4.2.27"