From 32b1be96a9777670d7093209646b760a49ba13be Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Thu, 29 Jul 2021 07:25:40 -0700 Subject: [PATCH] chore: use node 12 everywhere (#2081) --- .circleci/config.yml | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 05aef636..658aca8c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -63,8 +63,8 @@ commands: name: "Install Node.js" # via https://circleci.com/docs/2.0/circleci-images/#notes-on-pinning-images command: | - curl -sSL "https://nodejs.org/dist/v12.22.2/node-v12.22.2-linux-x64.tar.xz" \ - | sudo tar --strip-components=2 -xJ -C /usr/local/bin/ node-v12.22.2-linux-x64/bin/node + curl -sSL "https://nodejs.org/dist/v12.22.3/node-v12.22.3-linux-x64.tar.xz" \ + | sudo tar --strip-components=2 -xJ -C /usr/local/bin/ node-v12.22.3-linux-x64/bin/node - run: name: Check current version of node command: node -v diff --git a/package.json b/package.json index bd6db0c1..f06e226e 100644 --- a/package.json +++ b/package.json @@ -195,7 +195,7 @@ "*.html": "standard --fix --plugin html 'src/routes/**/*.html'" }, "volta": { - "node": "14.17.3", + "node": "12.22.3", "yarn": "1.22.11" } }