wayneashleyberry / wunderline

✅️ Command-line client for Wunderlist, the easiest way to get stuff done.
https://git.io/vM45l
MIT License
309 stars 29 forks source link

Use async.eachOfSeries for subtask-requests #111

Closed Thor77 closed 7 years ago

Thor77 commented 7 years ago

With eachOfSeries the order will keep correct but a new request is only started after the previous one completed, this leads to slower execution. We could use eachOf which won't do that but therefore won't preserve subtask order.

Fix #110