More logging tweaks

This commit is contained in:
cte 2025-03-22 14:18:57 -07:00
parent 2acfef8cf4
commit c5c45aa3f0
2 changed files with 8 additions and 10 deletions

View file

@ -74,11 +74,11 @@ code \
If you make extension code changes then you need to re-build it so that `extensionDevelopmentPath` has the latest version transpiled:
```sh
pnpm build:extension
cd .. && npm run vscode-test
```
If you make changes to `@benchmark/runner` or any of its dependencies then you should rebuild it:
```sh
pnpm build:runner
pnpm build
```

View file

@ -3,15 +3,13 @@
"private": true,
"packageManager": "pnpm@10.6.5",
"scripts": {
"lint": "turbo lint",
"check-types": "turbo check-types",
"format": "turbo format",
"build": "turbo build",
"build:extension": "cd .. && npm run vscode-test",
"build:runner": "turbo build --filter @benchmark/runner",
"lint": "turbo lint --log-order grouped --output-logs new-only",
"check-types": "turbo check-types --log-order grouped --output-logs new-only",
"format": "turbo format --log-order grouped --output-logs new-only",
"build": "turbo build --log-order grouped --output-logs new-only",
"web": "turbo dev --filter @benchmark/web --log-order grouped --output-logs new-only",
"cli": "turbo dev --filter @benchmark/cli --ui tui -- run",
"web": "turbo dev --filter @benchmark/web --output-logs new-only",
"studio": "pnpm --filter @benchmark/db db:studio",
"drizzle:studio": "pnpm --filter @benchmark/db db:studio",
"docker:build": "docker build -f Dockerfile -t roo-code-benchmark ..",
"docker:run": "touch /tmp/benchmarks.db && docker run -d -it -p 3000:3000 -v /tmp/benchmarks.db:/tmp/benchmarks.db roo-code-benchmark",
"docker:start": "npm run docker:build && npm run docker:run",