-
-
Notifications
You must be signed in to change notification settings - Fork 11
feat: add option to set asyncmap/asyncfilter concurrency pool limit #58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
884d812
7a5c304
6050a00
1417aa2
3a06cf8
01fa1a2
84e745a
aae3b10
1abd3f8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -45,6 +45,9 @@ | |
| "printWidth": 100, | ||
| "singleQuote": true | ||
| }, | ||
| "dependencies": { | ||
| "p-limit": "^7.2.0" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I assume the main reason for the major version bump was to get rid of any third party dependencies, however now we still add one. Would you mind if I try to actually implement concurrent mapping and filtering as part of this module without using third party modules?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't consider the removal of dependencies on its own to require a major version bump. I was merely investigating how to achieve that, and decided to modernize the package along the way, which resulted in the major bumps.
Hand-rolling the concurrency is certainly still possible, but given the above, I'm not sure if it's worth the effort, even with AI assistance. |
||
| }, | ||
| "devDependencies": { | ||
| "@appium/eslint-config-appium-ts": "^2.0.5", | ||
| "@appium/tsconfig": "^1.0.0", | ||
|
|
@@ -56,8 +59,8 @@ | |
| "chai-as-promised": "^8.0.2", | ||
| "conventional-changelog-conventionalcommits": "^9.0.0", | ||
| "eslint": "^9.39.1", | ||
| "prettier": "^3.0.0", | ||
| "mocha": "^11.7.5", | ||
| "prettier": "^3.0.0", | ||
| "semantic-release": "^25.0.2", | ||
| "ts-node": "^10.9.1", | ||
| "tsx": "^4.21.0", | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.