Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

Commit

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

* Add node 12 to dependabot config

Co-authored-by: Esteban Miño <[email protected]>
  • Loading branch information
rekmarks and estebanmino authored May 5, 2021
1 parent 02ab4be commit f9ade27
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ workflows:
jobs:
prep-deps:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- run:
Expand All @@ -37,7 +37,7 @@ jobs:

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

test-lint:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- attach_workspace:
Expand All @@ -59,7 +59,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 @@ -2,6 +2,9 @@
"name": "@metamask/mobile-provider",
"version": "2.0.1",
"main": "dist/index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "yarn build:prep && yarn build:inpage && yarn build:contentscript && yarn build:concat && yarn build:bundle",
Expand Down

0 comments on commit f9ade27

Please sign in to comment.