From 7842bc237e089d313bc466b3e46c773485346da0 Mon Sep 17 00:00:00 2001 From: gsxdsm Date: Tue, 9 Jun 2026 11:23:13 -0700 Subject: [PATCH] FN-6094: remove printing press UI re-exports Avoid CSS import crashes by narrowing the printing press plugin entry exports. - stop re-exporting dashboard view modules from the plugin entrypoint - stop re-exporting the test runner panel from the plugin entrypoint - keep runtime store, workflow step, and type exports intact Files changed: plugins/fusion-plugin-cli-printing-press/src/index.ts | 3 --- 1 file changed, 3 deletions(-) Fusion-Task-Id: FN-6094 Fusion-Task-Lineage: 9f544288-0134-4df2-90a6-f2378ad39f23 --- plugins/fusion-plugin-cli-printing-press/src/index.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/plugins/fusion-plugin-cli-printing-press/src/index.ts b/plugins/fusion-plugin-cli-printing-press/src/index.ts index 6326d38a31..5e9d059237 100644 --- a/plugins/fusion-plugin-cli-printing-press/src/index.ts +++ b/plugins/fusion-plugin-cli-printing-press/src/index.ts @@ -54,9 +54,6 @@ const plugin = definePlugin({ }); export default plugin; -export { CliPrintingPressWizardView } from "./dashboard-view.js"; -export { CliPrintingPressManageView } from "./manage-view.js"; -export { CliPrintingPressTestRunner } from "./run/TestRunnerPanel.js"; export { createCliPressStore, ensureCliPressSchema } from "./store/cli-press-store.js"; export { CLI_PRINTING_PRESS_WORKFLOW_STEPS } from "./workflow-steps.js"; export * from "./store/cli-press-types.js";