From 226b1af426b3eb634139d5675a0005ab3f32c34e Mon Sep 17 00:00:00 2001 From: Jonas Jesus Date: Wed, 22 Apr 2026 19:58:20 -0300 Subject: [PATCH] fix(package): include registry.ts in published tarball The files array only listed per-app directories, so registry.ts at the repo root was excluded from the published package. Consumers importing @decocms/apps/registry hit TS2307 / runtime ENOENT. Add registry.ts to the files array so it ships. Co-Authored-By: Claude Opus 4.7 --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 42aa290..80082a0 100644 --- a/package.json +++ b/package.json @@ -95,6 +95,7 @@ "vtex/", "resend/", "website/", + "registry.ts", "!**/__tests__/", "!scripts/" ],