Skip to content

Commit c5c45aa

Browse files
committed
More logging tweaks
1 parent 2acfef8 commit c5c45aa

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

benchmark/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ code \
7474
If you make extension code changes then you need to re-build it so that `extensionDevelopmentPath` has the latest version transpiled:
7575

7676
```sh
77-
pnpm build:extension
77+
cd .. && npm run vscode-test
7878
```
7979

8080
If you make changes to `@benchmark/runner` or any of its dependencies then you should rebuild it:
8181

8282
```sh
83-
pnpm build:runner
83+
pnpm build
8484
```

benchmark/package.json

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@
33
"private": true,
44
"packageManager": "[email protected]",
55
"scripts": {
6-
"lint": "turbo lint",
7-
"check-types": "turbo check-types",
8-
"format": "turbo format",
9-
"build": "turbo build",
10-
"build:extension": "cd .. && npm run vscode-test",
11-
"build:runner": "turbo build --filter @benchmark/runner",
6+
"lint": "turbo lint --log-order grouped --output-logs new-only",
7+
"check-types": "turbo check-types --log-order grouped --output-logs new-only",
8+
"format": "turbo format --log-order grouped --output-logs new-only",
9+
"build": "turbo build --log-order grouped --output-logs new-only",
10+
"web": "turbo dev --filter @benchmark/web --log-order grouped --output-logs new-only",
1211
"cli": "turbo dev --filter @benchmark/cli --ui tui -- run",
13-
"web": "turbo dev --filter @benchmark/web --output-logs new-only",
14-
"studio": "pnpm --filter @benchmark/db db:studio",
12+
"drizzle:studio": "pnpm --filter @benchmark/db db:studio",
1513
"docker:build": "docker build -f Dockerfile -t roo-code-benchmark ..",
1614
"docker:run": "touch /tmp/benchmarks.db && docker run -d -it -p 3000:3000 -v /tmp/benchmarks.db:/tmp/benchmarks.db roo-code-benchmark",
1715
"docker:start": "npm run docker:build && npm run docker:run",

0 commit comments

Comments
 (0)