From 00b6b1441a48e9af72d0b8f0080e044929fc4e52 Mon Sep 17 00:00:00 2001 From: Lars Rickert Date: Wed, 3 Jan 2024 10:35:33 +0100 Subject: [PATCH] chore: define release files for headless and storybook-utils (#20) Define missing `files` property of `package.json` that defines which files should be included when the package is released to npm --- packages/headless/package.json | 3 +++ packages/storybook-utils/package.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/packages/headless/package.json b/packages/headless/package.json index 10a4ed91e..590f246c9 100644 --- a/packages/headless/package.json +++ b/packages/headless/package.json @@ -5,6 +5,9 @@ "type": "module", "author": "Schwarz IT KG", "license": "Apache-2.0", + "files": [ + "src" + ], "exports": { ".": { "default": "./src/index.ts" diff --git a/packages/storybook-utils/package.json b/packages/storybook-utils/package.json index a7965ebc0..f4bc1bd68 100644 --- a/packages/storybook-utils/package.json +++ b/packages/storybook-utils/package.json @@ -5,6 +5,9 @@ "type": "module", "author": "Schwarz IT KG", "license": "Apache-2.0", + "files": [ + "src" + ], "exports": { ".": { "default": "./src/index.ts"