Skip to content

Commit

Permalink
Nimble => Async
Browse files Browse the repository at this point in the history
  • Loading branch information
alexyoung committed Oct 28, 2016
1 parent 5f0a1c4 commit 6d87a6c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ch02-intro-to-node/listing_216/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';
const flow = require('nimble');
flow.series([
const async = require('async');
async.series([
callback => {
setTimeout(() => {
console.log('I execute first.');
Expand Down
2 changes: 1 addition & 1 deletion ch02-intro-to-node/listing_216/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"author": "",
"license": "MIT",
"dependencies": {
"nimble": "0.0.2"
"async": "2.1.2"
}
}
3 changes: 1 addition & 2 deletions ch02-intro-to-node/listing_219/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"author": "",
"license": "MIT",
"dependencies": {
"async": "2.1.2",
"nimble": "0.0.2"
"async": "2.1.2"
}
}

0 comments on commit 6d87a6c

Please sign in to comment.