Skip to content

Commit 2b83488

Browse files
feat: Merge pull request #53 from 6RiverSystems/rc/nodejs-fourteen
feat: update to NodeJS 14 (CUR-1214) BREAKING CHANGES: es2020 breaks backwards compatibility
2 parents 20dad57 + 7d3fcda commit 2b83488

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ orbs:
66
jobs:
77
install:
88
docker:
9-
- image: cimg/node:12.22.1
9+
- image: cimg/node:14.17.6
1010
environment:
1111
NODE_ENV: test
1212
steps:
@@ -21,7 +21,7 @@ jobs:
2121
- .
2222
test:
2323
docker:
24-
- image: cimg/node:12.22.1
24+
- image: cimg/node:14.17.6
2525
environment:
2626
NODE_ENV: test
2727
MOCHA_OPTS: --reporter mocha-junit-reporter --reporter-options mochaFile=./reports/junit/mocha/mocha.xml
@@ -44,7 +44,7 @@ jobs:
4444

4545
publish:
4646
docker:
47-
- image: cimg/node:12.22.1
47+
- image: cimg/node:14.17.6
4848
environment:
4949
NODE_ENV: test
5050
steps:

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12.22.1
1+
14.17.6

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
"version": "0.0.0-development",
44
"description": "Bunyan logger component for loopback",
55
"main": "index.js",
6+
"engines": {
7+
"node": ">= 14.17.6"
8+
},
69
"scripts": {
710
"build": "true",
811
"pretest": "eslint ${ESLINT_OPTS} .",

0 commit comments

Comments
 (0)