summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Optimize asset loading for docsoptimize-page-loadGraeme Yeates2016-11-021-10/+13
|
* Version 2.1.2v2.1.2Graeme Yeates2016-10-161-1/+1
|
* Update built filesGraeme Yeates2016-10-163-5189/+5232
|
* Update changelogGraeme Yeates2016-10-161-0/+3
|
* Merge pull request #1307 from caolan/update-dependenciesGraeme Yeates2016-10-163-20/+38
|\ | | | | Update dependencies and travis testing
| * Tweak travis configupdate-dependenciesGraeme Yeates2016-10-162-8/+15
| | | | | | | | Revert nyc upgrade
| * Test firefox and building bundles in travisGraeme Yeates2016-10-162-1/+10
| | | | | | | | | | | | fix travis testing of firefox Revert to eslint@2.0
| * Update various dev dependenciesGraeme Yeates2016-10-162-19/+20
| |
| * Add babel-cli as a dev depGraeme Yeates2016-10-151-0/+1
| | | | | | | | No longer have to install it to run make :)
* | Merge pull request #1306 from caolan/break-tester-loopsGraeme Yeates2016-10-156-18/+101
|\ \ | |/ |/| Short circuit loops completely for some,every,detect when ready
| * Add short circuit test for everyGraeme Yeates2016-10-152-2/+30
| |
| * Short circuit loops completely for some,every,detect when ready [fixes #1293]Graeme Yeates2016-10-155-17/+72
|/
* Merge pull request #1304 from mikermcneil/patch-1Graeme Yeates2016-10-143-7/+10
|\ | | | | docs: fix typo in expected result for`mapValues()`
| * Verbiage: same as previous commit: use "value" instead of "result" for clarityMike McNeil2016-10-131-1/+1
| |
| * verbiage: use "value" instead of "result" to avoid confusion and be more ↵Mike McNeil2016-10-131-1/+1
| | | | | | | | consistent with https://github.com/mikermcneil/async/blob/patch-1/lib/mapValuesLimit.js
| * update docs for mapValueEachMike McNeil2016-10-131-2/+3
| | | | | | same as https://github.com/caolan/async/pull/1304/commits/7a252d05bca5e1cd8d6bb6ce2a70942806fe1a2f but for `mapValuesLimit`
| * update docs for mapValuesLimitMike McNeil2016-10-131-2/+3
| | | | | | same as https://github.com/caolan/async/pull/1304/commits/7a252d05bca5e1cd8d6bb6ce2a70942806fe1a2f but for `mapValuesLimit`
| * docs: fix copy/paste typoMike McNeil2016-10-131-3/+4
|/ | | | | Replace "array" with "object" (looks like it was likely a copy/paste error from when these docs were originally brought over from `.map()`), and rephrase the sentence accordingly. I also normalized an occurrence of "result" vs. "results" to match. > *NOTE:* I did not yet go through and do the same to `.mapValuesLimit()` and `.mapValuesSeries()` in this commit. I'm happy to take care of that in this PR, but it's purely a matter of copy and pasting the relevant comments.
* Version 2.1.1v2.1.1Graeme Yeates2016-10-121-1/+1
|
* Update built filesGraeme Yeates2016-10-123-4928/+5275
|
* Version 2.1.0v2.1.0Hubert Argasinski2016-10-121-1/+1
|
* Update built filesHubert Argasinski2016-10-123-39/+78
|
* fix style error in doc generation scriptHubert Argasinski2016-10-121-1/+0
|
* Update changelogHubert Argasinski2016-10-121-0/+8
|
* fix second minor typo in race docsHubert Argasinski2016-10-121-1/+1
|
* Merge pull request #1302 from Nicholaiii/patch-1Hubert Argasinski2016-10-121-1/+1
|\ | | | | Minor typo fix
| * Minor typo fixNicholai Nissen2016-10-121-1/+1
|/ | | Noticed this in the docs.
* Merge pull request #1300 from hargasinski/scrollspyHubert Argasinski2016-10-114-22/+113
|\ | | | | added scroll-spy behaviour (fixes #1289)
| * docs: update searching to use new idsHubert Argasinski2016-10-111-3/+3
| |
| * docs: using jQuery/cheerio builtins for adding classHubert Argasinski2016-10-091-3/+1
| |
| * docs: update old id links to new onesHubert Argasinski2016-10-071-0/+12
| |
| * docs: highlight current method in toc when viewing source fileHubert Argasinski2016-10-071-0/+6
| |
| * docs: added Bootstrap scroll-spyHubert Argasinski2016-10-073-25/+55
| |
| * docs: combine toc sublists into one listHubert Argasinski2016-10-072-3/+48
|/
* Fix perf suiteGraeme Yeates2016-10-052-20/+20
|
* apply #1282 to master, fixes misspelled wordHubert Argasinski2016-09-131-1/+1
|
* Merge pull request #1280 from hairyhenderson/fix-whilst-doc-inconsistencyAlex Early2016-09-091-4/+4
|\ | | | | Fixing inconsistency in whilst jsdoc
| * Fixing inconsistency in whilst jsdocDave Henderson2016-09-091-4/+4
|/ | | | Signed-off-by: Dave Henderson <dhenderson@gmail.com>
* clarified applyEach arguments, fixes #1278Hubert Argasinski2016-09-061-7/+9
|
* Merge pull request #1271 from brismuth/masterAlex Early2016-08-251-1/+1
|\ | | | | Adding closing parenthesis to parallel example.
| * Adding closing parenthesis to parallel example.Brian Smith2016-08-251-1/+1
|/
* Merge pull request #1261 from bojand/masterGraeme Yeates2016-08-083-5/+142
|\ | | | | add filter option to retry() and retryable(). PR for #1256.
| * fix errorFilter comment to reflect that we only pass err argument. Removed ↵Bojan Djurkovic2016-08-082-7/+1
| | | | | | | | setTimeout from retryable tests
| * rename the new retry option to errorFilter and consolidate retry attempt ↵Bojan Djurkovic2016-08-043-20/+16
| | | | | | | | condition into one statement
| * changed the error test function to continueOperation. improved comment ↵Bojan Djurkovic2016-08-033-30/+26
| | | | | | | | documentation and fixed code based on PR feedback.
| * add filter option to retry() and retryable() to allow for error filtering ↵Bojan Djurkovic2016-08-023-3/+154
| | | | | | | | and control of retry flow. Resolves #1256.
* | improved timeout example, fixes #1264Hubert Argasinski2016-08-061-4/+23
| |
* | Merge pull request #1263 from ieatfood/patch-1Hubert Argasinski2016-08-041-2/+2
|\ \ | |/ |/| Documentation typo
| * Documentation typoKuba Holuj2016-08-041-2/+2
|/ | | "Invoked with" doubled.
* Merge pull request #1253 from caolan/loopsGraeme Yeates2016-07-294-22/+56
|\ | | | | Unroll simple loop abstractions