From 178778c62549a59e6b502245c9482f558eb7ebae Mon Sep 17 00:00:00 2001 From: Jake Strawn Date: Thu, 26 Mar 2026 20:27:14 -0400 Subject: [PATCH] chore: remove redundant TypeScript source from npm published files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit packages/core/src was included in the files array but all exports already point to compiled build/ paths, making source inclusion redundant. Removing it reduces unpacked package size by ~94% (806 kB → 54 kB). src/skills is retained as it ships the update-helixir Claude Code skill to end users. Co-Authored-By: Claude Sonnet 4.6 --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 2ab2ac8..54a245e 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,6 @@ "files": [ "build", "!build/**/*.map", - "packages/core/src", "src/skills", "README.md", "CHANGELOG.md"