summaryrefslogtreecommitdiff
path: root/package.json
Commit message (Collapse)AuthorAgeFilesLines
* Bump karma-browserify from 5.3.0 to 8.1.0 (#1794)dependabot[bot]2022-01-281-1/+1
| | | | | | | | | | | | | | | | Bumps [karma-browserify](https://github.com/nikku/karma-browserify) from 5.3.0 to 8.1.0. - [Release notes](https://github.com/nikku/karma-browserify/releases) - [Commits](https://github.com/nikku/karma-browserify/compare/v5.3.0...v8.1.0) --- updated-dependencies: - dependency-name: karma-browserify dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Bump es6-promise from 2.3.0 to 4.2.8 (#1792)dependabot[bot]2022-01-281-1/+1
| | | | | | | | | | | | | | | | | Bumps [es6-promise](https://github.com/stefanpenner/es6-promise) from 2.3.0 to 4.2.8. - [Release notes](https://github.com/stefanpenner/es6-promise/releases) - [Changelog](https://github.com/stefanpenner/es6-promise/blob/master/CHANGELOG.md) - [Commits](https://github.com/stefanpenner/es6-promise/compare/2.3.0...v4.2.8) --- updated-dependencies: - dependency-name: es6-promise dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore: remove Azure DevOps CI (#1787)Nick Schonning2022-01-281-2/+0
| | | Cleaned up JUnit reporters that were used for test uploads there
* chore: upgrade to ESLint 8 (#1786)Nick Schonning2022-01-281-4/+4
| | | | - New babel parser package - Drops (dev) support for Node 10
* chore: remove karma-edge-launcher (#1784)Nick Schonning2022-01-281-1/+0
|
* chore: remove manual coveralls execution (#1785)Nick Schonning2022-01-091-2/+0
| | | Now done in GitHub Actions
* Version 3.2.3v3.2.3Alexander Early2022-01-091-1/+1
|
* Housekeeping (#1772)Jimmy Wärting2021-12-021-2/+0
| | | | | | | | | | | | | | | | | | | * rimraf was not being used * one less use of lodash dep * shorter name variant * one less lodash fn being used * use native forEach * result was a object * one less lodash recommendation * more explicit path * removed a unused variable
* Version 3.2.2v3.2.2Alexander Early2021-10-271-1/+1
|
* Version 3.2.1v3.2.1Alexander Early2021-08-051-1/+1
|
* Version 3.2.0v3.2.0Alexander Early2020-02-231-1/+1
|
* Version 3.1.1v3.1.1Alexander Early2020-01-241-1/+1
|
* chore: update more dev depsAlexander Early2019-06-301-3/+3
|
* chore: update nycAlexander Early2019-06-301-1/+1
|
* chore: update vulnerable depsAlexander Early2019-06-301-3/+3
|
* chore: update test depsAlexander Early2019-06-301-3/+3
|
* Version 3.1.0v3.1.0Alexander Early2019-06-221-1/+1
|
* docs: use `docs/` folder, include links for every major version (#1648)Alex Early2019-05-261-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | * publish docs to docs folder * disable jekyll * dont clean docs folder * add v2 docs * move docs to v3 * fix nav links, remove pointless footer text * fix scripts/footer * make doc generation idempotent * css tweak * fix path between v2 and v3 * fix logo link
* Version 3.0.1v3.0.1Alexander Early2019-05-261-1/+1
|
* update gh-pages-deployAlexander Early2019-05-191-1/+1
|
* Version 3.0.0v3.0.0Alexander Early2019-05-191-1/+1
|
* Update built filesAlexander Early2019-05-191-1/+1
|
* feat: Add .mjs bundle and pkg.main to CJS build (#1642)Alex Early2019-05-191-1/+1
| | | | | | * feat: add mjs bundle and pkg.main to CJS build * update docs
* chore: Add Azure Pipelines for CI (Windows, Linux, Mac) (#1630), Fix async ↵Pablo Núñez2019-04-071-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | function serialization in Safari. * Add azure pipelines CI. * Publish test results. * Enable coveralls * Use Safari for OSX browser tests. * Adding missing lib files to karma (only Safari complained). * Rename with dot so it gets better placed in order. * Use ci instead of install, so we stick with package-lock.json * Use npm test instead of mocha directly. It just needed a double -- escape. * Move DISPLAY to Linux only, with value set just once. * Use variables for DISPLAY, browser tests and coveralls. * Simplify steps with a browser name variable. * Run junit reporter on CI only. * DISPLAY should be already an environment variable. * Use vmImage for consistency with other OS. * Don't use verbose npm@1 task. * No need to setTimeout, let's `done` on the callback. * Don't resume twice. Check queue length on callback for safety, setTimeout may be delayed. * Avoid time dependency, act on events instead. * Avoid dependency on timing to final assertion. * Rewrite test to avoid setTimeout * Fix formatting. * Make diff more significant (125+50 ~= 200) * Make diff more significant to avoid race conditions. * Wait a bit more so default 5 retries did happen. * Make delays shorter to avoid "Timeout of 250ms exceeded" * Shorten delay to avoid 200ms test timeout in browser tests. * Shorten timeout to mitigate 200ms test timeout. * Add more diff on delays to enforce test behavior. * Make delays more significant to avoid race conditions. * Stop using setTimeout and rely on events to push new items, so order is enforced. * Fix async function serialization in Safari. * Add more delay so 4 never completes before 3. * Ensure 3 never completes before 4. * Use drain instead of task count. Trying to ensure done is called from Windows browser tests that fail frequently. * Ensure 2 starts before 3 arrives.Avoid expected 'process 2 3' to equal 'process 2' * Add retries to browser tests. * Don't fail all on Mac & Windows browser tests. * Ensure 3 happens before 2, it fails sparely on OSX. AssertionError: expected [ 1, 2, 3 ] to deeply equal [ 1, 3, 2 ] * Avoid unnecessary multilines. * Use Edge for Windows browser tests.
* Version 3.0.1-0v3.0.1-0Alexander Early2018-09-301-1/+1
|
* Update built filesAlexander Early2018-09-301-1/+1
|
* update depsAlexander Early2018-08-051-2/+2
|
* [wip] initial async generator support (#1560)Alex Early2018-08-051-2/+4
| | | feat: initial async generator support
* ES6-ify codebase (#1553)Alex Early2018-07-081-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * cancelable foreach * cancelable waterfall * cancellable auto * fix lint * fix tests * cancelable whilst/until/during/forever * fix waterfall test. It WILL get there * docs * use rest params instead of slice * clean up internals * remove property func * clarify uses of createTester * happy path async funtions in asyncify * stop using arguments * DLL to class * moar arrows * fix merge issues * remove forOwn * moar arrows * fix merge mistake * even more arrows, what can stop him * mo more fn.apply(null,...) * remove more spurious uses of apply * update lint config * just when you thought there couldn't possibly be more arrows * use eslint:recommended * even less uses or aguments * get rid of prototype cuteness * fix concat tests * fix more tests
* stop growlingAlexander Early2018-06-031-1/+0
|
* fix testsAlexander Early2018-06-021-1/+2
|
* optimize makefile, fix testsAlexander Early2018-06-021-1/+1
|
* move mocha_tests/ to test/Alexander Early2018-06-021-3/+3
|
* Merge branch 'master' into drop-lodashAlex Early2018-06-021-20/+15
|\
| * Version 2.6.1v2.6.1Alexander Early2018-05-201-1/+1
| |
| * update deps per npm auditAlexander Early2018-05-201-17/+14
| |
| * update lodash-es to match lodash@4.17Chris Dukakis2018-05-181-1/+1
| |
| * update lodash in deps & dev depsChris Dukakis2018-05-161-2/+2
| |
* | Drop lodash.isarraylikeFederico Brigante2018-04-191-3/+1
| |
* | Move lodash and lodash-es to devDependencies 🎉Federico Brigante2018-04-191-2/+2
| |
* | Use lodash.isarraylikeFederico Brigante2018-04-191-1/+2
|/ | | | | package size minified gzipped lodash.isarraylike@4.2.0 4.54 kB 376 B 161 B
* Version 2.6.0v2.6.0Alexander Early2017-11-061-1/+1
|
* add homepage to package.jsonAlexander Early2017-11-061-0/+1
|
* Version 2.5.0v2.5.0Alexander Early2017-06-251-1/+1
|
* Version 2.4.1v2.4.1Alexander Early2017-05-211-1/+1
|
* Version 2.4.0v2.4.0Alexander Early2017-04-291-1/+1
|
* Version 2.3.0v2.3.0Alexander Early2017-04-021-1/+1
|
* merge from masterAlexander Early2017-03-251-1/+1
|\
| * Version 2.2.0v2.2.0Alexander Early2017-03-251-1/+1
| |
* | initial experiment with async fn supportAlexander Early2017-03-221-2/+3
|/