summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* include individual module files for aliasesgenerate-indexAlexander Early2017-10-206-12/+70
|
* add testsAlexander Early2017-10-152-2/+11
|
* generate lib/index.js from a template and a list of aliasesAlexander Early2017-10-1511-187/+386
|
* Merge pull request #1471 from Grasseh/masterAlex Early2017-09-121-1/+1
|\ | | | | Fix tryEach documentation code example
| * Fix tryEach documentation code exampleGrasseh2017-09-121-1/+1
|/
* Merge pull request #1454 from iamdoron/masterGraeme Yeates2017-07-241-1/+3
|\ | | | | Use shift instead of splice (when possible) in queue
| * Use shift instead of splice (when possible) in queueDoron Pagot2017-07-211-1/+3
| |
* | Fix build (#1455)Hubert Argasinski2017-07-241-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * dedupe dependencies * prune dependencies * Revert "prune dependencies" This reverts commit ea83e64d8cad03e0aa93ba58de4e93d4df875c3c. * reset package-lock to master * manually bump ansi-styles to 2.2.1
* | update Makefile to include source map in build dir [fixes #1452] (#1453)Hubert Argasinski2017-07-241-2/+8
|/
* clarify retry vs retryable in docs. closes #1450Alexander Early2017-07-161-2/+2
|
* Improve `async.queue` start up performance (#1448)Hubert Argasinski2017-07-102-1/+11
| | | | | | | | | | * batch queue.push calls * add more queue perf suites * undo dist changes * prevent overwriting q.process from pausing the queue
* Version 2.5.0v2.5.0Alexander Early2017-06-252-1/+5815
|
* Update built filesAlexander Early2017-06-253-22/+48
|
* Update changelog for v2.5.0Hubert Argasinski2017-06-251-0/+6
|
* preserve order, make variadic and handle falsy values in concat [fixes ↵Hubert Argasinski2017-06-2310-102/+486
| | | | | | | | | | | | | | | | #1437] (#1436) * preserve order in concat * remove comment * fix concatLimit linting * handle variadic and falsy results in concatLimit [fixes #1437] * fix tests (typos) * PR fixes
* Add node 8 to travisAlex Early2017-06-101-1/+1
|
* add concatLimit [fixes #1426] (#1430)Hubert Argasinski2017-06-103-0/+62
|
* ensure q.workersList() contains items being processed [fixes #1428] (#1429)Hubert Argasinski2017-06-103-5/+120
| | | | | | | | * ensure q.workersList() contains items being processed [fixes #1428] * remove newline * improve q.workersList() test
* Merge pull request #1424 from quocvu/masterAlex Early2017-05-301-1/+1
|\ | | | | https link in readme.md
| * https link in readme.mdQuoc Vu2017-05-301-1/+1
|/ | | put an https link in readme.md to avoid the browser from producing a SSL warning
* clarify q.kill docs [fixes #1422]Hubert Argasinski2017-05-241-1/+2
|
* add links to v2.4.0 & v2.4.1 changelogHubert Argasinski2017-05-231-8/+8
|
* Update changelog for v2.4.1Alex Early2017-05-231-0/+3
|
* Version 2.4.1v2.4.1Alexander Early2017-05-211-1/+1
|
* Update built filesAlexander Early2017-05-213-24/+23
|
* Merge pull request #1419 from caolan/timeout-fixAlex Early2017-05-212-21/+56
|\ | | | | Allow functions wrapped in `timeout` to be called multiple times (fixes #1418)
| * allow fn wrapped in timeout to be called multiple times (fixes #1418)timeout-fixHubert Argasinski2017-05-202-21/+56
| |
* | may be better to use the length method (#1420)郑俊鑫2017-05-211-1/+1
|/
* Version 2.4.0v2.4.0Alexander Early2017-04-291-1/+1
|
* Update built filesAlexander Early2017-04-293-102/+100
|
* update changelog for 2.4.0Alexander Early2017-04-291-0/+9
|
* Merge pull request #1405 from caolan/build-refactorAlex Early2017-04-2511-346/+307
|\ | | | | Build Refactor
| * enable Make parallelizaionbuild-refactorAlexander Early2017-04-162-2/+2
| |
| * rename compile->compile-module.jsAlexander Early2017-04-162-1/+2
| |
| * move support functions into scripts that call themAlexander Early2017-04-164-50/+38
| |
| * use make to manage compiling individual filesAlexander Early2017-04-165-56/+20
| |
| * remove unused CJS index.js fileAlexander Early2017-04-163-23/+4
| |
| * Merge branch 'build-refactor' of ssh://github.com/caolan/async into ↵Alexander Early2017-04-160-0/+0
| |\ | | | | | | | | | build-refactor
| | * decouple compling modules and bundlingAlexander Early2017-04-095-45/+62
| | |
| | * refactor to not need babel, require node 6+Alexander Early2017-04-097-24/+23
| | |
| * | refactor to use ES module output to make umd bundleAlexander Early2017-04-168-273/+260
| | |
| * | factor compiling a module into a separate functionAlexander Early2017-04-162-24/+48
| | |
| * | decouple compling modules and bundlingAlexander Early2017-04-165-45/+62
| | |
| * | refactor to not need babel, require node 6+Alexander Early2017-04-167-24/+23
| | |
* | | Merge pull request #1408 from davidaurelio/masterAlex Early2017-04-222-3/+52
|\ \ \ | | | | | | | | [asyncify] Make errors in callbacks throw globally
| * | | [asyncify] Make errors in callbacks throw globallyDavid Aurelio2017-04-192-3/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | If asyncify wraps a function returning promises, the callback will be executed as part of the promise’s `.then()` method. This means that any error thrown from that method will be silenced, and lead to a “unhandled promise rejection” warning in modern engines. Usually, we want these errors to be visible, and even crash the process.
* | | | Merge pull request #1412 from Nolanus/masterAlex Early2017-04-221-1/+1
|\ \ \ \ | | | | | | | | | | Fix typo
| * | | | Fix typoSebastian Fuss2017-04-221-1/+1
|/ / / / | | | | | | | | Fix typo in asyncify documentation
* | | | Merge pull request #1409 from vvo/patch-2Graeme Yeates2017-04-191-2/+1
|\ \ \ \ | |/ / / |/| | | docs(intro): remove non relevant pkg managers
| * | | Update intro.mdVincent Voyer2017-04-191-1/+1
| | | |