Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,8 @@ Explicit field mapping (no spread) · `serialize*()` from server.ts · `deserial

**Styling:** Tailwind + shadcn/ui · `cn()` for conditionals · Glassmorphism: `backdrop-blur-sm`, `shadow-lg shadow-primary/5`

**Bash:** No inline comments in commands · Commands should be clean and self-explanatory

## Testing

Co-located: `src/**/__tests__/*.test.ts` or `src/**/*.test.ts`
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
"@simplifying/tsconfig": "workspace:*",
"husky": "^9.1.1",
"prisma": "^5.17.0",
"tsx": "^4.21.0",
"turbo": "^2.7.3",
"typescript": "5.5.3"
}
Expand Down
1 change: 0 additions & 1 deletion packages/uploads/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
},
"dependencies": {
"@simplifying/api-client": "workspace:*",
"@simplifying/errors": "workspace:*",
"@simplifying/prisma": "workspace:*"
},
"devDependencies": {
Expand Down
30 changes: 17 additions & 13 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
packages:
- "packages/*"
- "apps/*"
- "tools/*"

onlyBuiltDependencies:
- '@prisma/client'
Expand Down
14 changes: 14 additions & 0 deletions tools/ai-review/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "@simplifying/ai-review",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"test": "vitest",
"test:run": "vitest run"
},
"devDependencies": {
"typescript": "5.5.3",
"vitest": "^4.0.16"
}
}
7 changes: 7 additions & 0 deletions tools/ai-review/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { defineConfig } from "vitest/config";

export default defineConfig({
test: {
include: ["scripts/__tests__/**/*.test.ts"],
},
});