mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-13 01:36:22 +00:00
27 lines
543 B
Markdown
27 lines
543 B
Markdown
---
|
|
'@openstapps/projectmanagement': minor
|
|
'@openstapps/minimal-connector': minor
|
|
'@openstapps/minimal-plugin': minor
|
|
'@openstapps/collection-utils': minor
|
|
'@openstapps/core-tools': minor
|
|
'@openstapps/gitlab-api': minor
|
|
'@openstapps/backend': minor
|
|
'@openstapps/logger': minor
|
|
'@openstapps/core': minor
|
|
'@openstapps/api': minor
|
|
---
|
|
|
|
Migrate away from `@krlwlfrt/async-pool`
|
|
|
|
```ts
|
|
import {mapAsyncLimit} from '@openstapps/collection-utils';
|
|
|
|
await mapAsyncLimit(
|
|
[1, 2, 3],
|
|
async it => {
|
|
await someNetworkRequest(it);
|
|
},
|
|
5,
|
|
);
|
|
```
|