From ffbc2ac61ce13a1283d2edb3f75bce160a10f3b1 Mon Sep 17 00:00:00 2001 From: Renato Date: Fri, 6 Dec 2019 11:44:59 -0800 Subject: [PATCH] upgrade to node 12 --- .circleci/config.yml | 2 +- Dockerfile | 2 +- Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4724930..eb6ae7a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ jobs: build: working_directory: ~/Clever/mongo-lock-node docker: - - image: circleci/node:10.12.0-stretch + - image: circleci/node:12-stretch - image: circleci/mongo:3.2.20-jessie-ram environment: CIRCLE_ARTIFACTS: /tmp/circleci-artifacts diff --git a/Dockerfile b/Dockerfile index 4a78ee9..4dba359 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1 @@ -FROM node:10-slim +FROM node:12-slim diff --git a/Makefile b/Makefile index f278a41..5567dca 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ include node.mk .PHONY: all test build lint SHELL := /bin/bash -NODE_VERSION := "v10" +NODE_VERSION := "v12" TS_FILES := $(shell find . -name "*.ts" -not -path "./node_modules/*" -not -name "*numbro-polyfill.ts")