From e1a48bf0750ea335ebd8f77026c862f4fa2a9694 Mon Sep 17 00:00:00 2001 From: James Woods Date: Tue, 24 Feb 2026 17:03:19 +0000 Subject: [PATCH] fix: include server/static in published package files The sandbox_proxy.html file was not shipped in the npm package because the files arrays in both package.json and server/package.json only included the build directory. The server code resolves the file via join(__dirname, '..', 'static', 'sandbox_proxy.html') which expects static/ as a sibling of build/, but it was missing from the package. --- package.json | 1 + server/package.json | 1 + 2 files changed, 2 insertions(+) diff --git a/package.json b/package.json index 948f361e6..50265a730 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "client/bin", "client/dist", "server/build", + "server/static", "cli/build" ], "workspaces": [ diff --git a/server/package.json b/server/package.json index b5805319a..d87ce79b1 100644 --- a/server/package.json +++ b/server/package.json @@ -12,6 +12,7 @@ }, "files": [ "build", + "static", "LICENSE" ], "scripts": {