Comparing version
{ | ||
"name": "run-auto", | ||
"description": "Determine the best order for running async functions, and run them", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"author": { | ||
@@ -17,5 +17,5 @@ "name": "Feross Aboukhadijeh", | ||
"devDependencies": { | ||
"standard": "^7.0.0", | ||
"tape": "^4.0.0", | ||
"zuul": "^3.1.0" | ||
"airtap": "0.0.4", | ||
"standard": "*", | ||
"tape": "^4.0.0" | ||
}, | ||
@@ -43,6 +43,6 @@ "homepage": "https://github.com/feross/run-auto", | ||
"test": "standard && npm run test-node && npm run test-browser", | ||
"test-browser": "zuul -- test/*.js", | ||
"test-browser-local": "zuul --local -- test/*.js", | ||
"test-browser": "airtap -- test/*.js", | ||
"test-browser-local": "airtap --local -- test/*.js", | ||
"test-node": "tape test/*.js" | ||
} | ||
} |
@@ -1,2 +0,2 @@ | ||
# run-auto [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] | ||
# run-auto [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url] | ||
@@ -9,2 +9,4 @@ [travis-image]: https://img.shields.io/travis/feross/run-auto/master.svg | ||
[downloads-url]: https://npmjs.org/package/run-auto | ||
[standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg | ||
[standard-url]: https://standardjs.com | ||
@@ -11,0 +13,0 @@ #### Determine the best order for running async functions, ***LIKE MAGIC!*** |
@@ -25,3 +25,3 @@ var auto = require('../') | ||
task1: function (cb) { | ||
cb(false, 'result1') | ||
cb(null, 'result1') | ||
}, | ||
@@ -28,0 +28,0 @@ task2: ['task1', function (results, cb) { |
Sorry, the diff of this file is not supported yet
131
1.55%13275
-25.4%10
-9.09%