Skip to content

Commit

Permalink
Use Node 12 (#441)
Browse files Browse the repository at this point in the history
* Use Node 12

* Add engines field
  • Loading branch information
rekmarks authored and MajorLift committed Oct 11, 2023
1 parent 49d9a2c commit 735a7f4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ workflows:
jobs:
prep-deps:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- run:
Expand All @@ -44,7 +44,7 @@ jobs:

prep-build:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- attach_workspace:
Expand All @@ -59,7 +59,7 @@ jobs:

test-format:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- attach_workspace:
Expand All @@ -70,7 +70,7 @@ jobs:

test-lint:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- attach_workspace:
Expand All @@ -81,7 +81,7 @@ jobs:

test-unit:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- attach_workspace:
Expand All @@ -92,7 +92,7 @@ jobs:

all-tests-pass:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- run:
name: All tests passed
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v10
v12
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
"files": [
"dist/"
],
"engines": {
"node": ">=12.0.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
Expand Down

0 comments on commit 735a7f4

Please sign in to comment.