From 3e12fd8a2c985e5c51cbc82dee9243a69997e8fc Mon Sep 17 00:00:00 2001 From: Laura Benz <48948963+L-M-K-B@users.noreply.github.com> Date: Thu, 2 May 2024 17:36:32 +0200 Subject: [PATCH] Renovate: Add Slate and related packages to ignore list (#87250) refactor: add Slate and related dependencies to ignore section --- .github/renovate.json5 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 25f18c606db..047d57f0a4a 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -11,6 +11,10 @@ "monaco-editor", // due to us exposing this via @grafana/ui/CodeEditor's props bumping can break plugins "@fingerprintjs/fingerprintjs", // we don't want to bump to v4 due to licensing changes "@swc/core", // versions ~1.4.5 contain multiple bugs related to baseUrl resolution breaking builds. + "slate", // we don't want to continue using this on the long run, use Monaco editor instead of Slate + "slate-react", // we don't want to continue using this on the long run, use Monaco editor instead of Slate + "@types/slate-react", // we don't want to continue using this on the long run, use Monaco editor instead of Slate + "@types/slate" // we don't want to continue using this on the long run, use Monaco editor instead of Slate ], "includePaths": ["package.json", "packages/**", "public/app/plugins/**"], "ignorePaths": ["emails/**", "plugins-bundled/**", "**/mocks/**"],