Skip to content

Commit

Permalink
Fix engines + increase tests timeout (#6)
Browse files Browse the repository at this point in the history
* Update package.json with engines + tests timeout

Signed-off-by: mhkeller <[email protected]>

* 1.0.1

Signed-off-by: mhkeller <[email protected]>
  • Loading branch information
mhkeller authored Jan 4, 2018
1 parent b3a8457 commit af59a0a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Changelog
===

## 1.0.1

> 2018-01-04
Package.json changes.

* Change the `engines` field to be `>5.0.0` from `^4.4.3` to solve [#5](https://github.com/bloomberg/wsk/issues/5). Update the tests timeout
* [180a1c26eb29f884034dbdb9410bcb8478de2f1d](https://github.com/bloomberg/wsk/commit/180a1c26eb29f884034dbdb9410bcb8478de2f1d)

## 1.0.0

> 2017-11-17
Initial release.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "wsk",
"version": "1.0.0",
"version": "1.0.1",
"description": "A minimal task runner system to complement your npm scripts.",
"main": "src/index.js",
"scripts": {
"clear-tmp": "rm -rf tests/tmp/*",
"test": "nyc ava tests/test-*.js --timeout=60s -s -v",
"test": "nyc ava tests/test-*.js --timeout=300s -s -v",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"pretest": "npm run clear-tmp",
"precoverage": "npm run clear-tmp"
Expand All @@ -28,7 +28,7 @@
"wsk-notify": "^1.0.0"
},
"engines": {
"node": "^4.4.3"
"node": ">=5.0.0"
},
"nyc": {
"exclude": [
Expand Down

0 comments on commit af59a0a

Please sign in to comment.