From 0345a1bb4bf45fe86793ae3065c5448b6f582e5a Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Mon, 20 Nov 2023 16:08:36 -0700 Subject: [PATCH] Ignore @metamask/snaps-ui deprecation (#21896) `@metamask/snaps-ui` is indirectly used by `@metamask/keyring-api` but is deprecated, so we are getting an audit failure. Replacing `@metamask/snaps-ui` with `@metamask/snaps-sdk` will solve this but in the meantime we are ignoring this deprecation to unblock further merges. --- .yarnrc.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.yarnrc.yml b/.yarnrc.yml index ccf8881d6796..c8fae8128230 100644 --- a/.yarnrc.yml +++ b/.yarnrc.yml @@ -111,6 +111,11 @@ npmAuditIgnoreAdvisories: # remove this. - '@metamask/types (deprecation)' + # @metamask/keyring-api also depends on @metamask/snaps-ui which is + # deprecated. Replacing that dependency with @metamask/snaps-sdk will remove + # this. + - '@metamask/snaps-ui (deprecation)' + npmRegistries: 'https://npm.pkg.github.com': npmAlwaysAuth: true