From 17cbb5c7ddb1740aab7f2a8ae57e6dc0f65779b7 Mon Sep 17 00:00:00 2001 From: Hannu Lyytikainen Date: Wed, 28 Nov 2018 10:35:32 +0200 Subject: [PATCH] Change supported node version to the latest LTS --- .circleci/config.yml | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d30d60e3..ba44aee3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2 jobs: format: docker: - - image: circleci/node:8.11 + - image: circleci/node:10.14 steps: - checkout - restore_cache: @@ -25,7 +25,7 @@ jobs: command: yarn run format-ci test: docker: - - image: circleci/node:8.11 + - image: circleci/node:10.14 steps: - checkout - restore_cache: @@ -48,7 +48,7 @@ jobs: command: yarn run test-ci build: docker: - - image: circleci/node:8.11 + - image: circleci/node:10.14 steps: - checkout - restore_cache: @@ -71,7 +71,7 @@ jobs: command: yarn run build audit: docker: - - image: circleci/node:8.11 + - image: circleci/node:10.14 steps: - checkout - restore_cache: diff --git a/package.json b/package.json index a2542963..e7156df0 100644 --- a/package.json +++ b/package.json @@ -87,6 +87,6 @@ "proseWrap": "always" }, "engines": { - "node": "8.11" + "node": "10.14" } }