mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
d1b07d4513
generate-registry.ts imports the catalog cross-join/flatten fold from ../harness/src/shared/catalog/catalog-flatten.ts, which does `import yaml from "js-yaml"`. The generator's build/test environments did not stage that file (or its module-resolution scope), so the fold could not resolve. - Dockerfiles (shell, shell-dashboard, shell-docs, shell-dojo): COPY the shared catalog source + harness/package.json (its `"type":"module"` is required so catalog-flatten resolves as ESM and its named exports bind) and provide a node_modules for js-yaml resolution. - generate-registry-pattern.test.ts (makeHarness): stage catalog-flatten.ts and harness/package.json at the exact relative path the generator resolves, and symlink the scripts node_modules onto the harness tree so the ESM `import yaml from "js-yaml"` resolves. - js-yaml + @types/js-yaml added to showcase/scripts (package.json and the npm package-lock.json), and the root pnpm-lock.yaml regenerated to add the matching importer entries for showcase/scripts (js-yaml >=4.1.1 via the root override, @types/js-yaml ^4.0.9) so `pnpm install --frozen-lockfile` stays in sync.