aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/turbo.json
blob: 4b0463e38bdde0f401fa4f0503cbbd7bcd1d5145 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  "$schema": "./public/schema.json",
  "extends": ["//"],
  "pipeline": {
    "build": {
      "env": [
        "SENTRY_DSN",
        "TURBOREPO_SFDC_CAMPAIGN_ID",
        "TRAY_URL",
        "CONVERTKIT_API_KEY",
        "CONVERTKIT_API_SECRET"
      ],
      "outputs": [".next/**", "!.next/cache/**"],
      "dependsOn": ["^build", "rss", "schema"]
    },
    "dev": {
      "dependsOn": ["schema"],
      "persistent": true,
      "cache": false
    },
    "schema": {
      "inputs": [], // None of the files in this workspace matter
      "dependsOn": ["@turbo/types#topo"],
      "outputs": ["public/schema.json"]
    },
    "rss": {
      "inputs": ["pages/blog/**", "scripts/generate-rss.js"],
      "outputs": ["public/feed.xml"]
    }
  }
}