From 2caf840e38570a75288f4d2cf053fc58f80f6205 Mon Sep 17 00:00:00 2001 From: Thomas Grzesiakowski Date: Thu, 23 Jan 2020 13:05:30 -0500 Subject: [PATCH 1/2] update node to version 10 as 8 is no longer LTS --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2797b540..519d646a 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "dist/index.js", "module": "dist/@testing-library/react.esm.js", "engines": { - "node": ">=8" + "node": ">=10" }, "scripts": { "prebuild": "rimraf dist", @@ -85,4 +85,4 @@ "url": "https://github.com/testing-library/react-testing-library/issues" }, "homepage": "https://github.com/testing-library/react-testing-library#readme" -} +} \ No newline at end of file From c87c782c6b3c3536fdcc5a396e62c771bfc55739 Mon Sep 17 00:00:00 2001 From: Thomas Grzesiakowski Date: Thu, 23 Jan 2020 13:13:55 -0500 Subject: [PATCH 2/2] updating travis yml file with newer versions of node --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 66796ac9..489032d8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,9 +6,9 @@ cache: notifications: email: false node_js: - - '8' - '10' - '12' + - '13' install: - npm install # as requested by the React team :)