Files
agentic-dev/turbo.json
Danijel Martinek 986f8b2c26 refactor(apps)!: delete web-tanstack demo app
Veect retrofit (ADR-027): the product is a hosted SaaS built on
web-next; apps/web-tanstack existed only as template demo surface for
the TanStack Start framework path. This slice removes the app and all
wiring that referenced it:

- turbo.json globalEnv: WEB_TANSTACK_SENTRY_DSN,
  VITE_WEB_TANSTACK_SENTRY_DSN, VITE_GIT_COMMIT_SHA,
  SENTRY_PROJECT_WEB_TANSTACK
- .env.example: the same four DSN/release vars
- generator e2e fixtures that stripped deps from the app's package.json
- coverage diff comment + test fixtures referencing apps/web-tanstack
- app-list entries in README, CLAUDE.md (port table, Sentry projects),
  AGENTS.md (tags, binder list, per-app docs), docs/glossary.md (App)
- pnpm-lock.yaml importer + orphaned transitive deps

Framework-support code in core packages stays: core-trpc's TanStack
provider, core-shared security/tanstack middleware, and the Sentry
react/node init adapters are generic TanStack support, not app wiring.
Prose in guides/ADRs/library traces is story 08 scope.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016j8z4VHjedXDTjEDNg7qHK
2026-07-12 15:27:37 +02:00

103 lines
2.2 KiB
JSON

{
"$schema": "https://turborepo.dev/schema.json",
"globalDependencies": [".env"],
"globalEnv": [
"CI",
"DATABASE_URL",
"PAYLOAD_SECRET",
"NODE_ENV",
"USE_DEV_SEED",
"WEB_NEXT_SENTRY_DSN",
"NEXT_PUBLIC_WEB_NEXT_SENTRY_DSN",
"CMS_SENTRY_DSN",
"SENTRY_AUTH_TOKEN",
"SENTRY_ORG",
"SENTRY_PROJECT_WEB_NEXT",
"SENTRY_PROJECT_CMS",
"SENTRY_TRACES_SAMPLE_RATE",
"SENTRY_ENVIRONMENT",
"VERCEL_GIT_COMMIT_SHA",
"NEXT_PUBLIC_VERCEL_GIT_COMMIT_SHA",
"VERCEL_ENV",
"AUDIT_PSEUDONYM_SALT"
],
"boundaries": {
"tags": {
"app": {
"dependencies": {
"allow": ["app", "core", "core-composition", "feature", "tooling"]
}
},
"feature": {
"dependencies": {
"allow": ["core", "feature", "tooling"]
}
},
"core": {
"dependencies": {
"allow": ["core", "core-composition", "tooling"]
}
},
"core-composition": {
"dependencies": {
"allow": ["core", "core-composition", "feature", "tooling"]
}
},
"tooling": {
"dependencies": {
"allow": ["tooling"]
}
}
}
},
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^lint"]
},
"test": {
"dependsOn": []
},
"test:e2e": {
"dependsOn": ["^build"],
"cache": false
},
"typecheck": {
"dependsOn": []
},
"conformance": {
"inputs": [
"packages/*/src/feature.manifest.ts",
"scripts/conformance.mjs",
"packages/core-eslint/rules/_manifest-ast.js"
],
"outputs": []
},
"fallow": {
"inputs": [
"packages/**/src/**/*.ts",
"packages/**/src/**/*.tsx",
"apps/**/src/**/*.ts",
"apps/**/src/**/*.tsx",
"scripts/**/*.mjs",
".fallowrc.json"
],
"outputs": []
},
"build-storybook": {
"outputs": ["storybook-static/**"]
},
"test:stories": {
"dependsOn": ["build-storybook"],
"cache": false
}
}
}