Skip to content

Commit d87f890

Browse files
authored
Move evals into pnpm workspace, switch from SQLite to Postgres (#4278)
1 parent 927e210 commit d87f890

File tree

170 files changed

+3170
-12346
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

170 files changed

+3170
-12346
lines changed
File renamed without changes.

apps/web-docs/README.md

Lines changed: 1 addition & 0 deletions

apps/web-evals/.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DATABASE_URL=postgres://postgres:password@localhost:5432/evals_development

apps/web-evals/.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# .env
2+
!.env
3+
4+
# next.js
5+
.next
6+
7+
# typescript
8+
tsconfig.tsbuildinfo
File renamed without changes.

evals/apps/web/eslint.config.mjs renamed to apps/web-evals/eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { nextJsConfig } from "@evals/eslint-config/next-js"
1+
import { nextJsConfig } from "@roo-code/config-eslint/next-js"
22

33
/** @type {import("eslint").Linter.Config} */
44
export default [

apps/web-evals/next-env.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
File renamed without changes.
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
{
2-
"name": "@evals/web",
2+
"name": "@roo-code/web-evals",
33
"private": true,
44
"scripts": {
55
"lint": "next lint",
66
"check-types": "tsc -b",
7-
"dev": "dotenvx run -f ../../.env -- next dev --turbopack",
7+
"dev": "next dev --turbopack",
88
"format": "prettier --write src",
99
"build": "next build",
1010
"start": "next start"
1111
},
1212
"dependencies": {
13-
"@evals/db": "workspace:^",
14-
"@evals/ipc": "workspace:^",
15-
"@evals/types": "workspace:^",
1613
"@hookform/resolvers": "^4.1.3",
1714
"@radix-ui/react-alert-dialog": "^1.1.7",
1815
"@radix-ui/react-dialog": "^1.1.6",
@@ -26,33 +23,36 @@
2623
"@radix-ui/react-slot": "^1.1.2",
2724
"@radix-ui/react-tabs": "^1.1.3",
2825
"@radix-ui/react-tooltip": "^1.1.8",
26+
"@roo-code/evals": "workspace:^",
27+
"@roo-code/ipc": "workspace:^",
28+
"@roo-code/types": "workspace:^",
2929
"@tanstack/react-query": "^5.69.0",
3030
"class-variance-authority": "^0.7.1",
3131
"clsx": "^2.1.1",
3232
"cmdk": "^1.1.0",
3333
"fuzzysort": "^3.1.0",
3434
"lucide-react": "^0.511.0",
35-
"next": "15.3.3",
35+
"next": "^15.2.5",
3636
"next-themes": "^0.4.6",
3737
"p-map": "^7.0.3",
3838
"ps-tree": "^1.2.0",
39-
"react": "^19.0.0",
40-
"react-dom": "^19.0.0",
41-
"react-hook-form": "^7.54.2",
39+
"react": "^18.3.1",
40+
"react-dom": "^18.3.1",
41+
"react-hook-form": "^7.57.0",
4242
"react-use": "^17.6.0",
43-
"sonner": "^2.0.2",
44-
"tailwind-merge": "^3.0.2",
43+
"sonner": "^2.0.5",
44+
"tailwind-merge": "^3.3.0",
4545
"tailwindcss-animate": "^1.0.7",
4646
"vaul": "^1.1.2",
4747
"zod": "^3.24.2"
4848
},
4949
"devDependencies": {
50-
"@evals/eslint-config": "workspace:^",
51-
"@evals/typescript-config": "workspace:^",
50+
"@roo-code/config-eslint": "workspace:^",
51+
"@roo-code/config-typescript": "workspace:^",
5252
"@tailwindcss/postcss": "^4",
5353
"@types/ps-tree": "^1.1.6",
54-
"@types/react": "^19",
55-
"@types/react-dom": "^19",
54+
"@types/react": "^18.3.18",
55+
"@types/react-dom": "^18.3.5",
5656
"tailwindcss": "^4"
5757
}
5858
}
File renamed without changes.

0 commit comments

Comments
 (0)