From d1b21a5981db378d076ed1d9bbf5fdeff8203939 Mon Sep 17 00:00:00 2001 From: Jack Westbrook Date: Mon, 3 Oct 2022 11:41:38 +0200 Subject: [PATCH] Grafana UI: Prevent built storybook being bundled with package (#56158) --- packages/grafana-ui/package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/grafana-ui/package.json b/packages/grafana-ui/package.json index 1087ab73961..706c7b6895f 100644 --- a/packages/grafana-ui/package.json +++ b/packages/grafana-ui/package.json @@ -25,10 +25,11 @@ "access": "public" }, "files": [ - "dist", + "./dist", + "!./dist/storybook", "./README.md", "./CHANGELOG.md", - "LICENSE_APACHE2" + "./LICENSE_APACHE2" ], "scripts": { "build": "tsc -p ./tsconfig.build.json && rollup -c rollup.config.ts",