Skip to content

Commit 25debe8

Browse files
renovate[bot]B4nan
andauthored
chore(deps): lock file maintenance (#3170)
Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more [here](https://redirect.github.com/renovatebot/renovate/discussions/37842). This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Configuration 📅 **Schedule**: Branch creation - "before 2am" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/apify/crawlee). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Martin Adámek <banan23@gmail.com>
1 parent ca2fa7e commit 25debe8

3 files changed

Lines changed: 820 additions & 900 deletions

File tree

packages/core/src/enqueue_links/enqueue_links.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,10 @@ export async function enqueueLinks(
411411
if (onSkippedRequest && skippedRequests.length > 0) {
412412
await Promise.all(
413413
skippedRequests.map((request) => {
414-
return onSkippedRequest({ url: request.url, reason: request.skippedReason ?? reason });
414+
return onSkippedRequest({
415+
url: request.url,
416+
reason: request.skippedReason ?? reason,
417+
}) as Promise<void>;
415418
}),
416419
);
417420
}

0 commit comments

Comments
 (0)