We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a01192 commit c5736b4Copy full SHA for c5736b4
src/cli/lib/components.ts
@@ -295,7 +295,9 @@ async function startComponentsPushAndCodegen(
295
ctx,
296
rootComponent,
297
// When running codegen for a specific component, don't bundle the root.
298
- [...components.values()].filter((dir) => !dir.syntheticComponentImport),
+ [...components.values()].filter(
299
+ (dir) => !dir.isRoot && !dir.syntheticComponentImport,
300
+ ),
301
projectConfig.node.externalPackages,
302
options.liveComponentSources ? ["@convex-dev/component-source"] : [],
303
options.verbose,
0 commit comments