Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/mistralai-exclude-test-files.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@livekit/agents-plugin-mistralai': patch
---

fix(mistralai): exclude `.test.ts` files from build output so test artifacts are no longer published to npm
1 change: 1 addition & 0 deletions plugins/mistralai/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "../../tsconfig.json",
"include": ["./src"],
"exclude": ["./src/**/*.test.ts"],
Comment thread
devin-ai-integration[bot] marked this conversation as resolved.
"compilerOptions": {
// match output dir to input dir. e.g. dist/index instead of dist/src/index
"rootDir": "./src",
Expand Down
1 change: 1 addition & 0 deletions plugins/mistralai/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ import defaults from '../../tsup.config';

export default defineConfig({
...defaults,
entry: ['src/**/*.ts', '!src/**/*.test.ts'],
});
Loading