mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-24 14:45:36 +00:00
The package barrel at packages/extension-api/src/index.ts duplicated the canonical surface in src/extension-api/index.ts. Two hand-maintained exports lists drift out of sync — Architect #4's removal of startExtensionSystem from the public surface, for example, only landed in the canonical barrel. Collapse the package barrel to a single 'export * from @/extension-api/index' re-export so the canonical file is the one source of truth. Future surface additions/removals flow through automatically; no risk of asymmetric export sets between the in-tree consumer (@/extension-api) and the npm package consumer (@comfyorg/extension-api).