From 13ceec112e683ea70c5b56239c932e079b9c1a0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=A4ggmark?= Date: Wed, 26 Mar 2025 11:52:34 +0100 Subject: [PATCH] Plugins: fix for unstable/internal paths (#102854) * Plugins: fix for unstable/internal paths * Chore: fix missing path in CODEOWNERS * Chore: fix missing path in CODEOWNERS * Trigger build --- packages/grafana-plugin-configs/webpack.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/grafana-plugin-configs/webpack.config.ts b/packages/grafana-plugin-configs/webpack.config.ts index 4fd39f206cd..0f16eea2503 100644 --- a/packages/grafana-plugin-configs/webpack.config.ts +++ b/packages/grafana-plugin-configs/webpack.config.ts @@ -67,9 +67,9 @@ const config = async (env: Record): Promise => { 'react-router', 'd3', 'angular', - '@grafana/ui', - '@grafana/runtime', - '@grafana/data', + /^@grafana\/ui/i, + /^@grafana\/runtime/i, + /^@grafana\/data/i, // Mark legacy SDK imports as external if their name starts with the "grafana/" prefix ({ request }, callback) => {