Skip to content

Commit

Permalink
feat!: node 12 is now minimum engine (#70)
Browse files Browse the repository at this point in the history

Fixes #69

* build: update build config
  • Loading branch information
bcoe committed Sep 9, 2021
1 parent f550688 commit de257f7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 0 additions & 7 deletions .circleci/config.yml
@@ -1,9 +1,5 @@
version: 2

node_10: &node_10
docker:
- image: node:10

node_12: &node_12
docker:
- image: node:12
Expand All @@ -28,8 +24,6 @@ test_plan: &test_plan
- run: $(yarn bin)/codecov || echo "CodeCov did not collect coverage reports"

jobs:
node_10_test_plan:
<<: [*node_10, *test_plan]
node_12_test_plan:
<<: [*node_12, *test_plan]
node_next_test_plan:
Expand All @@ -39,6 +33,5 @@ workflows:
version: 2
build:
jobs:
- node_10_test_plan
- node_12_test_plan
- node_next_test_plan
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -8,7 +8,7 @@
"bugs": "https://github.com/conventional-changelog/get-pkg-repo/issues",
"description": "Get repository user and project information from package.json file contents.",
"engines": {
"node": ">=6.9.0"
"node": ">=12"
},
"files": [
"src/"
Expand Down

0 comments on commit de257f7

Please sign in to comment.