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
7 changes: 5 additions & 2 deletions apps/api/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
]
},
"typecheck": {
"outputs": [".cache/tsbuildinfo.json"]
"outputs": [
".cache/tsbuildinfo.json",
"wrangler-types.d.ts"
]
},
"lint:openapi": {
"dependsOn": [
Expand All @@ -34,7 +37,7 @@
"build:openapi": {
"cache": false,
"outputs": [
"../../ucd-generated/api/openapi.json"
"$TURBO_ROOT$/ucd-generated/api/openapi.json"
]
}
}
Expand Down
18 changes: 18 additions & 0 deletions apps/docs/turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://turborepo.dev/schema.json",
"extends": ["//"],
"tasks": {
"build": {
"outputs": [
"dist/**",
".output/**"
]
},
"dev": {
"persistent": true
},
"lint": {
"outputs": []
Copy link

Copilot AI Feb 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The turbo.json file is missing a typecheck task configuration, but the package.json includes a typecheck script. For consistency with other apps like apps/web and to ensure proper task caching, consider adding a typecheck task configuration similar to other packages.

Suggested change
"outputs": []
"outputs": []
},
"typecheck": {
"outputs": []

Copilot uses AI. Check for mistakes.
}
}
}
5 changes: 4 additions & 1 deletion apps/store/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
"lint": {
},
"typecheck": {
"outputs": [".cache/tsbuildinfo.json"]
"outputs": [
".cache/tsbuildinfo.json",
"wrangler-types.d.ts"
]
}
}
}
21 changes: 21 additions & 0 deletions apps/web/turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://turborepo.dev/schema.json",
"extends": ["//"],
"tasks": {
"build": {
"outputs": [
"dist/**",
".output/**"
]
},
"dev": {
"persistent": true
},
"lint": {
"outputs": []
},
"typecheck": {
"outputs": [".cache/tsbuildinfo.json"]
}
}
}
18 changes: 18 additions & 0 deletions packages/pipelines/pipeline-artifacts/turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://turborepo.dev/schema.json",
"extends": ["//"],
"tasks": {
"build": {
"outputs": ["dist/**"]
},
"dev": {
"persistent": true
},
"lint": {
"outputs": []
},
"typecheck": {
"outputs": [".cache/tsbuildinfo.json"]
}
}
}
18 changes: 18 additions & 0 deletions packages/pipelines/pipeline-core/turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://turborepo.dev/schema.json",
"extends": ["//"],
"tasks": {
"build": {
"outputs": ["dist/**"]
},
"dev": {
"persistent": true
},
"lint": {
"outputs": []
},
"typecheck": {
"outputs": [".cache/tsbuildinfo.json"]
}
}
}
18 changes: 18 additions & 0 deletions packages/pipelines/pipeline-executor/turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://turborepo.dev/schema.json",
"extends": ["//"],
"tasks": {
"build": {
"outputs": ["dist/**"]
},
"dev": {
"persistent": true
},
"lint": {
"outputs": []
},
"typecheck": {
"outputs": [".cache/tsbuildinfo.json"]
}
}
}
18 changes: 18 additions & 0 deletions packages/pipelines/pipeline-graph/turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://turborepo.dev/schema.json",
"extends": ["//"],
"tasks": {
"build": {
"outputs": ["dist/**"]
},
"dev": {
"persistent": true
},
"lint": {
"outputs": []
},
"typecheck": {
"outputs": [".cache/tsbuildinfo.json"]
}
}
}
18 changes: 18 additions & 0 deletions packages/pipelines/pipeline-loader/turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://turborepo.dev/schema.json",
"extends": ["//"],
"tasks": {
"build": {
"outputs": ["dist/**"]
},
"dev": {
"persistent": true
},
"lint": {
"outputs": []
},
"typecheck": {
"outputs": [".cache/tsbuildinfo.json"]
}
}
}
12 changes: 12 additions & 0 deletions packages/pipelines/pipeline-playground/turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "https://turborepo.dev/schema.json",
"extends": ["//"],
"tasks": {
"lint": {
"outputs": []
},
"typecheck": {
"outputs": [".cache/tsbuildinfo.json"]
}
}
}
18 changes: 18 additions & 0 deletions packages/pipelines/pipeline-presets/turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://turborepo.dev/schema.json",
"extends": ["//"],
"tasks": {
"build": {
"outputs": ["dist/**"]
},
"dev": {
"persistent": true
},
"lint": {
"outputs": []
},
"typecheck": {
"outputs": [".cache/tsbuildinfo.json"]
}
}
}
5 changes: 5 additions & 0 deletions packages/worker-utils/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
},
"typecheck": {
"outputs": [".cache/tsbuildinfo.json"]
},
"generate:types": {
"outputs": [
"wrangler-types.d.ts"
]
}
}
}
58 changes: 29 additions & 29 deletions pnpm-lock.yaml

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

4 changes: 2 additions & 2 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ packages:
catalogs:
build:
turbo: 2.8.10
"@ucdjs/release-scripts": 0.1.0-beta.56
"@ucdjs/release-scripts": 0.1.0-beta.57
tsdown: 0.20.3
typescript: 5.9.3
publint: 0.3.17
Expand Down Expand Up @@ -58,7 +58,7 @@ catalogs:
vitest-testdirs: 4.4.2
msw: 2.12.10
# "@cloudflare/vitest-pool-workers": 0.11.1
"@cloudflare/vitest-pool-workers": https://pkg.pr.new/@cloudflare/vitest-pool-workers@11632
"@cloudflare/vitest-pool-workers": https://pkg.pr.new/@cloudflare/vitest-pool-workers@ccaf85f

lint:
"@luxass/eslint-config": 7.2.0
Expand Down
Loading
Loading