Skip to content
Open
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: 1 addition & 1 deletion .github/workflows/check-types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
run: |
echo "::remove-matcher owner=tsc::"
echo "::add-matcher::.github/matchers/tsc-absolute.json"
- run: bun run type-check:ci
- run: bun run typecheck:ci
1 change: 1 addition & 0 deletions apps/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
"@uiw/react-json-view": "^2.0.0-alpha.40",
"@uploadthing/react": "^7.3.0",
"@upstash/ratelimit": "^2.0.5",
"@upstash/vector": "^1.2.2",
"@vercel/analytics": "^1.5.0",
"@vercel/sandbox": "^0.0.21",
"@vercel/sdk": "^1.7.1",
Expand Down
26 changes: 7 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"packageManager": "bun@1.3.3",
"private": true,
"scripts": {
"build": "turbo build",
"build": "turbo run build",
"check:env": "node scripts/check-unused-env.js",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
Expand All @@ -70,33 +70,21 @@
"deps:lint": "syncpack lint",
"deps:update": "syncpack update",
"deps:upgrade": "syncpack update && bun install",
"dev": "turbo dev --parallel",
"dev": "turbo run dev --parallel",
"db:generate": "turbo run db:generate --filter=@comp/app --filter=@comp/portal --filter=@comp/api",
"docker:clean": "bun run -F @comp/db docker:clean",
"docker:down": "bun run -F @comp/db docker:down",
"docker:up": "bun run -F @comp/db docker:up",
"format": "prettier --write .",
"lint": "turbo lint && syncpack lint",
"lint": "turbo run lint && syncpack lint",
"prepare": "husky",
"test": "turbo test --parallel",
"test": "turbo run test --parallel",
"test:release": "node scripts/test-release.js",
"typecheck": "turbo typecheck",
"typecheck:ci": "turbo typecheck --filter={apps/**} --filter={packages/**} --filter=!@trycompai/integrations --filter=!@trycompai/ui"
"typecheck": "turbo run typecheck",
"typecheck:ci": "turbo run typecheck --filter={apps/**} --filter={packages/**} --filter=!@trycompai/integrations --filter=!@trycompai/ui"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@trycompai/design-system": "^1.0.38",
"@types/cheerio": "^1.0.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@upstash/vector": "^1.2.2",
"better-auth": "1.4.5",
"cheerio": "^1.1.2",
"react-syntax-highlighter": "^15.6.6",
"unpdf": "^1.4.0",
"xlsx": "^0.18.5",
"zod": "^4.2.1"
}
]
}
8 changes: 6 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": ["**/.env"],
"globalDependencies": [".env"],
"ui": "tui",
"tasks": {
"transit": {
"dependsOn": ["^transit"]
},
"prisma:generate": {
"cache": false,
"outputs": ["prisma/schema.prisma", "node_modules/.prisma/**"]
Expand All @@ -17,9 +20,10 @@
"outputs": [".next/**", "!.next/cache/**", "next-env.d.ts", "dist/**"]
},
"lint": {
"dependsOn": ["^lint"]
"dependsOn": ["transit"]
},
"typecheck": {
"dependsOn": ["transit"],
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
},
"dev": {
Expand Down