Skip to content

Commit

Permalink
feat: Update to node v14.11.0
Browse files Browse the repository at this point in the history
- Hoping this will address #6254

Signed-off-by: Peter Lyons <pete.lyons@mailchimp.com>
  • Loading branch information
Peter Lyons committed Sep 24, 2020
1 parent 4f2c1c0 commit 3330b8a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -10,7 +10,7 @@ defaults: &defaults
DOCKER_NAMESPACE: "reactioncommerce"
DOCKER_NAME: "reaction"
docker:
- image: circleci/node:12.14.1-stretch
- image: circleci/node:14.11.0-stretch

jobs:
install-dependencies:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
test-integration-query:
<<: *defaults
docker:
- image: circleci/node:12.14.1-stretch
- image: circleci/node:14.11.0-stretch
# Integration tests need MongoDB server running and accessible on port 27017
- image: circleci/mongo:4.2.0
command: mongod --oplogSize 128 --replSet rs0 --storageEngine=wiredTiger
Expand All @@ -89,7 +89,7 @@ jobs:
test-integration-mutation:
<<: *defaults
docker:
- image: circleci/node:12.14.1-stretch
- image: circleci/node:14.11.0-stretch
# Integration tests need MongoDB server running and accessible on port 27017
- image: circleci/mongo:4.2.0
command: mongod --oplogSize 128 --replSet rs0 --storageEngine=wiredTiger
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
@@ -1 +1 @@
12.14.1
14.11.0
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,5 +1,5 @@
# Dockerfile for production builds
FROM reactioncommerce/node-prod:12.14.1-v1
FROM reactioncommerce/node-prod:14.11.0-v1

# The `node-prod` base image installs NPM deps with --no-scripts.
# This prevents the `sharp` lib from working because it installs the binaries
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.dev.yml
Expand Up @@ -12,7 +12,7 @@ version: '3.4'

services:
api:
image: reactioncommerce/node-dev:12.14.1-v3
image: reactioncommerce/node-dev:14.11.0-v1
ports:
- "3000:3000"
- "9229:9229"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -5,7 +5,7 @@
"main": "./src/index.js",
"type": "module",
"engines": {
"node": ">=12.14.1"
"node": ">=14.11.0"
},
"homepage": "https://github.com/reactioncommerce/reaction",
"url": "https://github.com/reactioncommerce/reaction",
Expand Down

0 comments on commit 3330b8a

Please sign in to comment.