From c776f86fb2a999dcae46fda9abb5005718c354b2 Mon Sep 17 00:00:00 2001 From: Lennart Date: Wed, 29 Nov 2023 11:36:01 +0100 Subject: [PATCH] fix(shared): Add missing entry in `files` of `package.json` (#2229) * fix(shared): Add missing `files` entry in `package.json` * Create heavy-falcons-help.md --- .changeset/heavy-falcons-help.md | 5 +++++ packages/shared/package.json | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changeset/heavy-falcons-help.md diff --git a/.changeset/heavy-falcons-help.md b/.changeset/heavy-falcons-help.md new file mode 100644 index 0000000000..5ebdc9554f --- /dev/null +++ b/.changeset/heavy-falcons-help.md @@ -0,0 +1,5 @@ +--- +"@clerk/shared": patch +--- + +Add missing `telemetry` entry to `files` array in `package.json` diff --git a/packages/shared/package.json b/packages/shared/package.json index c3c79ceb8e..617e0c1b8f 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -67,7 +67,8 @@ "react", "constants", "apiUrlFromPublishableKey", - "scripts" + "scripts", + "telemetry" ], "scripts": { "build": "tsup",