From ea1874a358ffa15e8d1b6a18c8a83f4a2ad89cf9 Mon Sep 17 00:00:00 2001 From: Elizabeth Craig Date: Thu, 29 Nov 2018 18:27:08 -0800 Subject: [PATCH 1/2] Add support for Node 10 --- rush.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rush.json b/rush.json index 37eec1ce1eacb5..e437afdf9b6ba4 100644 --- a/rush.json +++ b/rush.json @@ -92,7 +92,7 @@ * Specify a SemVer range to ensure developers use a NodeJS version that is appropriate * for your repo. */ - "nodeSupportedVersionRange": ">=8.0.0 <10.0.0", + "nodeSupportedVersionRange": ">=8.0.0 <9.0.0 || >=10.0.0 <11.0.0", /** * If you would like the version specifiers for your dependencies to be consistent, then From ba40dcd808ebcc4644887dbf17292dfd8ea9e4cc Mon Sep 17 00:00:00 2001 From: Elizabeth Craig Date: Thu, 29 Nov 2018 18:35:01 -0800 Subject: [PATCH 2/2] make travis use node 10 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c0d01ddcc04a7c..88b3af93874178 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: node_js node_js: - - '8' + - '10' script: - node common/scripts/install-run-rush.js install --bypass-policy - if [ $TRAVIS_BRANCH == "master" ] && [ $TRAVIS_PULL_REQUEST != "false" ];