Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
queicherius committed Mar 16, 2017
1 parent 8055d81 commit 9b46f58
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .babelrc
@@ -1,5 +1,8 @@
{
"presets": ["latest", "stage-0"],
"presets": [
["env", {"targets": {"browsers": ["last 2 versions", "> 5%"], "node": 6}, "loose": true}],
"stage-0"
],
"env": {
"test": {
"plugins": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -19,6 +19,6 @@
"is-function": "^1.0.1"
},
"devDependencies": {
"abc-environment": "^1.0.5"
"abc-environment": "^2.0.0"
}
}
2 changes: 1 addition & 1 deletion tests/index.spec.js
Expand Up @@ -9,7 +9,7 @@ function timeoutPromise (ms, throwError = false) {
if (!throwError) {
resolve(x)
} else {
reject({message: 'Error'})
reject(new Error('Error'))
}
}, ms)
})
Expand Down

0 comments on commit 9b46f58

Please sign in to comment.