From a6f75d86765f031b89d9350c8d9f92ddf8f15ca8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Wed, 21 Feb 2024 08:56:29 +0100 Subject: [PATCH] start explicitly exluding known esm-only packages to reduce noise MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fredrik Adelöw --- .github/renovate.json5 | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 5d979d5f22..b54fd32657 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -11,6 +11,13 @@ // do not pin dev dependencies, which are part of the best-practices preset ignorePresets: [':pinDevDependencies', ':pinDigest'], + constraints: { + // TODO(freben): Remove this later; it addresses a temporary issue in corepack + // https://github.com/nodejs/corepack/issues/379 + // https://github.com/renovatebot/renovate/discussions/27465 + corepack: '0.24.1', + }, + // the default limit are 10 PRs prConcurrentLimit: 20, @@ -42,5 +49,14 @@ matchSourceUrls: ['https://github.com/yarnpkg/berry'], enabled: false, }, + // ESM only majors, that we're not ready for yet + { + matchPackageNames: ['node-fetch'], + allowedVersions: '<3.0.0', + }, + { + matchPackageNames: ['inquirer', '@types/inquirer'], + allowedVersions: '<9.0.0', + }, ], }