Skip to content
This repository has been archived by the owner on Dec 5, 2017. It is now read-only.

Commit

Permalink
Remove support for node v4.
Browse files Browse the repository at this point in the history
default arguments aren't support by node v4 and I'm using them now so
remove node v4 support/testing.
  • Loading branch information
coreyfarrell committed Nov 29, 2017
1 parent 7f9d7e0 commit db3b1c1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: node_js

node_js:
- 4
- 6
- 8
- 9

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Initiate a promise that resolves or rejects based on emitter events.

### Install @cfware/promisify-emitter

This module requires node.js 4 or above.
This module requires node.js 6 or above.

```sh
npm i --save @cfware/promisify-emitter
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@cfware/promisify-emitter",
"version": "0.2.0",
"version": "0.2.1",
"description": "Create a promise that resolves or rejects based on emitter events.",
"main": "index.js",
"scripts": {
"test": "eslint *.js test/*.js && nyc mocha",
"report-coverage": "nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"nodejs": ">=4"
"nodejs": ">=6"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit db3b1c1

Please sign in to comment.