diff --git a/.changeset/fuzzy-evals-warn.md b/.changeset/fuzzy-evals-warn.md new file mode 100644 index 000000000..5000a0551 --- /dev/null +++ b/.changeset/fuzzy-evals-warn.md @@ -0,0 +1,5 @@ +--- +"braintrust": patch +--- + +fix: Correct the eval file extension shown in CLI directory warnings diff --git a/js/src/cli/index.ts b/js/src/cli/index.ts index 863f19987..fcfb0fefc 100755 --- a/js/src/cli/index.ts +++ b/js/src/cli/index.ts @@ -719,7 +719,7 @@ async function collectFiles( console.warn( warning( `Reading ${inputPath} because it was specified directly. Rename it to end in ${prefix}.ts or ` + - `.${prefix}.js to include it automatically when you specify a directory.`, + `${prefix}.js to include it automatically when you specify a directory.`, ), ); }