From 80a5a2e7ddcaa034991cc46b6342b2be3266f46a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Ribaudo?= Date: Fri, 26 Apr 2019 20:57:50 +0200 Subject: [PATCH] Allow node 12 and test it (#9907) --- .circleci/config.yml | 2 +- .travis.yml | 1 + package.json | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c43f839867..cb085191b7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,7 +34,7 @@ jobs: build: working_directory: ~/babel docker: - - image: circleci/node:11 + - image: circleci/node:12 steps: - checkout - restore-cache: *restore-yarn-cache diff --git a/.travis.yml b/.travis.yml index ce095069aa..3957c277c1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ cache: yarn: true node_js: # We test the latest version on circleci + - '11' - '10' - '8' - '6' diff --git a/package.json b/package.json index 11ee61edba..6c60ff91d7 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,7 @@ "@lerna/**/@lerna/collect-updates": "https://github.com/nicolo-ribaudo/lerna.git#babel-collect-updates" }, "engines": { - "node": ">= 6.9.0 < 12.0.0", + "node": ">= 6.9.0 < 13.0.0", "npm": ">= 3.x <= 6.x", "yarn": ">=0.27.5 || >=1.0.0-20170811" },