File tree Expand file tree Collapse file tree 3 files changed +9
-11
lines changed
Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env bun
22
3- import { sendEvalResultsEmail } from './git-evals/ email-eval-results'
3+ import { sendEvalResultsEmail } from './email-eval-results'
44import {
55 analyzeEvalResults ,
66 PostEvalAnalysis ,
7- } from './git-evals/ post-eval-analysis'
8- import { runGitEvals } from './git-evals/ run-git-evals'
9- import { FullEvalLog } from './git-evals/ types'
7+ } from './post-eval-analysis'
8+ import { runGitEvals } from './run-git-evals'
9+ import { FullEvalLog } from './types'
1010
1111const DEFAULT_OUTPUT_DIR = 'git-evals'
1212
Original file line number Diff line number Diff line change 99 "test:swe-bench" : " bun test swe-bench.test.ts" ,
1010 "test:e2e-cat-app" : " bun run e2e-cat-app-script.ts" ,
1111 "typecheck" : " tsc --noEmit" ,
12- "build" : " tsc" ,
13- "gen-git-evals" : " bun run dist/git-evals/gen-evals.js" ,
14- "run-git-evals" : " bun run dist/git-evals/run-git-evals.js" ,
15- "run-eval-set" : " bun run dist/run-eval-set.js" ,
16- "setup-codebuff-repo" : " bun run dist/setup-codebuff-repo.js"
12+ "gen-git-evals" : " bun run git-evals/gen-evals.ts" ,
13+ "run-git-evals" : " bun run git-evals/run-git-evals.ts" ,
14+ "run-eval-set" : " bun run git-evals/run-eval-set.ts" ,
15+ "setup-codebuff-repo" : " bun run setup-codebuff-repo.ts"
1716 },
1817 "dependencies" : {
1918 "@codebuff/integrations" : " workspace:*" ,
Original file line number Diff line number Diff line change 22 "extends" : " ../tsconfig.base.json" ,
33 "compilerOptions" : {
44 "types" : [" node" , " bun" ],
5- "outDir" : " ./dist" ,
65 "rootDir" : " ." ,
76 "paths" : {
87 "common/*" : [" ../common/src/*" ],
1817 { "path" : " ../npm-app" },
1918 { "path" : " ../packages/integrations" }
2019 ],
21- "exclude" : [" test-repos" , " dist " ],
20+ "exclude" : [" test-repos" ],
2221 "include" : [" **/*.ts" ]
2322}
You can’t perform that action at this time.
0 commit comments