mirror of
https://github.com/bitwarden/directory-connector
synced 2026-01-04 09:33:26 +00:00
* Revert "[PM-26454] Undo removal of core-js to fix dynamic import errors (#890)"
This reverts commit 7c27202dab.
This removes the core-js dependency again, because restoring it did not fix the bug.
* Downgrade googleapis to 149 to avoid ESM issue
* Exclude googleapis from updates
25 lines
988 B
Plaintext
25 lines
988 B
Plaintext
{
|
|
$schema: "https://docs.renovatebot.com/renovate-schema.json",
|
|
extends: ["github>bitwarden/renovate-config"],
|
|
enabledManagers: ["github-actions", "npm"],
|
|
packageRules: [
|
|
{
|
|
groupName: "gh minor",
|
|
matchManagers: ["github-actions"],
|
|
matchUpdateTypes: ["minor", "patch"],
|
|
},
|
|
],
|
|
ignoreDeps: [
|
|
// yao-pkg is used to create a single executable application bundle for the CLI.
|
|
// It is a third party build of node which carries a high supply chain risk.
|
|
// This must be manually vetted by our appsec team before upgrading.
|
|
// It is excluded from renovate to avoid accidentally upgrading to a non-vetted version.
|
|
"@yao-pkg/pkg",
|
|
// googleapis uses ESM after 149.0.0 so we are not upgrading it until we have ESM support.
|
|
// They release new versions every couple of weeks so ignoring it at the dependency dashboard
|
|
// level is not sufficient.
|
|
// FIXME: remove and upgrade when we have ESM support.
|
|
"googleapis",
|
|
],
|
|
}
|