From dbed39df4c6bf2ed80b08335605f506f239a5582 Mon Sep 17 00:00:00 2001 From: "Anthony Fu (via agent)" Date: Thu, 13 Aug 2026 08:13:33 +0000 Subject: [PATCH] fix(turbo): build json-render-ui before hub-vite and hub-next MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both examples dynamically import `@devframes/json-render-ui/hub` at runtime, but neither task's explicit turbo dependsOn list included `@devframes/json-render-ui#build`. On a cold cache, turbo could run hub-vite/hub-next's build before json-render-ui finished, failing with ERR_MODULE_NOT_FOUND on dist/hub.mjs — the failure seen in the e2e CI job. --- turbo.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/turbo.json b/turbo.json index 42d87b37..5d642c27 100644 --- a/turbo.json +++ b/turbo.json @@ -77,6 +77,7 @@ "dependsOn": [ "@devframes/hub#build", "devframe#build", + "@devframes/json-render-ui#build", "@devframes/plugin-git#build", "@devframes/plugin-terminals#build", "@devframes/plugin-code-server#build", @@ -95,6 +96,7 @@ "@devframes/hub#build", "devframe#build", "@devframes/next#build", + "@devframes/json-render-ui#build", "@devframes/plugin-git#build", "@devframes/plugin-terminals#build", "@devframes/plugin-code-server#build",