Skip to content

Commit

Permalink
fix: Update node version requirement (#646)
Browse files Browse the repository at this point in the history
* fix: specify lowest node version in package.json

The lowest version of node required by explicit dependencies is ^8.12.0 specified by Execa

* test: run tests on node 8, 10 and 12
  • Loading branch information
Iiro Jäppinen authored and okonet committed Jul 2, 2019
1 parent e24aaf2 commit 6c1e42f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Expand Up @@ -4,8 +4,8 @@

environment:
matrix:
- nodejs_version: '12'
- nodejs_version: '10'
- nodejs_version: '9'
- nodejs_version: '8'

matrix:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -4,8 +4,8 @@

language: node_js
node_js:
- '12'
- '10'
- '9'
- '8'

before_install: yarn global add greenkeeper-lockfile@1
Expand Down
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -6,7 +6,7 @@ const pkg = require('./package.json')
require('please-upgrade-node')(
Object.assign({}, pkg, {
engines: {
node: '>=8.6.0'
node: '>=8.12.0'
}
})
)
Expand Down

0 comments on commit 6c1e42f

Please sign in to comment.