From 3205e917311471ba51fbd0067135cb200ca7a82e Mon Sep 17 00:00:00 2001 From: ylemkimon Date: Tue, 7 Jan 2020 03:58:04 +0900 Subject: [PATCH] Upgrade minimum development Node version to v10 (#2177) Node v8 will reach its end-of-life by December 2019. Co-authored-by: Erik Demaine --- .circleci/config.yml | 6 +++--- docs/node.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 495ef3bf..ce16a7e7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,11 +3,11 @@ version: 2.1 executors: firefox: docker: - - image: circleci/node:8 + - image: circleci/node:10 - image: selenium/standalone-firefox:2.48.2 chrome: docker: - - image: circleci/node:8 + - image: circleci/node:10 - image: selenium/standalone-chrome:2.48.2 environment: # workaround for https://github.com/SeleniumHQ/docker-selenium/issues/87 @@ -74,7 +74,7 @@ commands: jobs: test: docker: - - image: circleci/node:8 + - image: circleci/node:10 steps: - run: name: Check whether the build is running on the main repository diff --git a/docs/node.md b/docs/node.md index 3eeab6df..8be06e12 100644 --- a/docs/node.md +++ b/docs/node.md @@ -22,7 +22,7 @@ yarn global add katex ``` ### Building from Source -To build you will need Git, Node.js 8 or later, and Yarn. +To build you will need Git, Node.js 10 or later, and Yarn. Clone a copy of the GitHub source repository: ```bash