Skip to content

Commit 6bb1e01

Browse files
committed
fix(mastra): build copilotkit subpackage properly in tsup config
Signed-off-by: Tyler Slaton <[email protected]>
1 parent f5940f6 commit 6bb1e01

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

typescript-sdk/integrations/mastra/tsup.config.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import { defineConfig } from "tsup";
22

33
export default defineConfig({
4-
entry: ["src/index.ts"],
4+
entry: {
5+
index: "src/index.ts",
6+
copilotkit: "src/copilotkit.ts",
7+
},
58
format: ["cjs", "esm"],
69
dts: true,
710
splitting: false,

0 commit comments

Comments
 (0)