-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(rethrow): Rethrowing Error instances, especially useful for asyn…
…c promise errors, fixes #19
- Loading branch information
Showing
4 changed files
with
101 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"name": "lazy-ass", | ||
"description": "Lazy assertions without performance penalty", | ||
"author": "Gleb Bahmutov <[email protected]>", | ||
"version": "0.0.0-semantic-release", | ||
"author": "Gleb Bahmutov <[email protected]>", | ||
"bugs": { | ||
"url": "https://github.com/bahmutov/lazy-ass/issues" | ||
}, | ||
|
@@ -19,17 +19,6 @@ | |
"post-merge": [] | ||
} | ||
}, | ||
"release": { | ||
"verifyConditions": [ | ||
{ | ||
"path": "@semantic-release/condition-travis" | ||
}, | ||
{ | ||
"path": "condition-node-version", | ||
"node": "4.2.2" | ||
} | ||
] | ||
}, | ||
"contributors": [], | ||
"dependencies": {}, | ||
"devDependencies": { | ||
|
@@ -89,22 +78,33 @@ | |
], | ||
"license": "MIT", | ||
"main": "index.js", | ||
"release": { | ||
"verifyConditions": [ | ||
{ | ||
"path": "@semantic-release/condition-travis" | ||
}, | ||
{ | ||
"path": "condition-node-version", | ||
"node": "4.2.2" | ||
} | ||
] | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/bahmutov/lazy-ass.git" | ||
}, | ||
"scripts": { | ||
"commit": "git-issues && commit-wizard", | ||
"build": "grunt", | ||
"commit": "git-issues && commit-wizard", | ||
"coveralls": "cat coverage/PhantomJS*/lcov.info | ./node_modules/coveralls/bin/coveralls.js", | ||
"demo": "grunt gh-pages", | ||
"dont-break": "dont-break --timeout 30", | ||
"issues": "git-issues", | ||
"mocha": "mocha test/*.spec.js", | ||
"pkgfiles": "pkgfiles", | ||
"semantic-release": "semantic-release pre && npm publish && semantic-release post", | ||
"size": "tarball=\"$(npm pack .)\"; wc -c \"${tarball}\"; tar tvf \"${tarball}\"; rm \"${tarball}\";", | ||
"test": "grunt test", | ||
"watch": "grunt watch", | ||
"semantic-release": "semantic-release pre && npm publish && semantic-release post" | ||
"watch": "grunt watch" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters