cal.pub0.org/turbo.json

144 lines
3.8 KiB
JSON
Raw Normal View History

2022-02-09 22:17:10 +00:00
{
"$schema": "https://turborepo.org/schema.json",
2022-02-09 22:37:50 +00:00
"baseBranch": "origin/main",
2022-02-09 22:17:10 +00:00
"pipeline": {
2022-05-26 17:44:23 +00:00
"@calcom/prisma#build": {
"dependsOn": ["post-install", "db-deploy"],
"outputs": []
2022-05-26 17:44:23 +00:00
},
"@calcom/prisma#db-migrate": {
"cache": false,
"dependsOn": ["@calcom/prisma#db-up"],
"inputs": ["./schema.prisma", "./migrations/**/*.sql"],
"outputs": []
},
"@calcom/prisma#db-seed": {
"cache": false,
"dependsOn": ["@calcom/prisma#db-migrate"],
"outputs": []
},
"@calcom/prisma#db-up": {
"cache": false,
"outputs": []
},
"@calcom/prisma#dx": {
"cache": false,
"dependsOn": ["@calcom/prisma#db-migrate"],
"outputs": []
2022-02-10 18:30:32 +00:00
},
"@calcom/web#build": {
"dependsOn": [
"^build",
"$NEXT_PUBLIC_IS_E2E",
"$NEXT_PUBLIC_LICENSE_CONSENT",
"$NEXT_PUBLIC_STRIPE_FREE_PLAN_PRICE",
"$NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRICE",
"$NEXT_PUBLIC_STRIPE_PRO_PLAN_PRICE",
"$NEXT_PUBLIC_STRIPE_PRO_PLAN_PRODUCT",
"$NEXT_PUBLIC_STRIPE_PUBLIC_KEY",
"$NEXT_PUBLIC_WEBAPP_URL",
"$NEXT_PUBLIC_WEBSITE_URL"
],
"outputs": [".next/**"]
},
"@calcom/web#dx": {
"cache": false,
"dependsOn": ["@calcom/prisma#dx"],
"outputs": []
},
"@calcom/web#start": {
"cache": false,
"dependsOn": ["@calcom/prisma#db-deploy"],
"outputs": []
},
2022-03-02 20:28:57 +00:00
"@calcom/website#build": {
"dependsOn": [
"$NEXT_PUBLIC_STRIPE_FREE_PLAN_PRICE",
"$NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRICE",
"$NEXT_PUBLIC_STRIPE_PRO_PLAN_PRICE",
"$NEXT_PUBLIC_STRIPE_PRO_PLAN_PRODUCT",
"$NEXT_PUBLIC_STRIPE_PUBLIC_KEY",
"$NEXT_PUBLIC_WEBAPP_URL",
"$NEXT_PUBLIC_WEBSITE_URL"
],
2022-03-02 20:28:57 +00:00
"outputs": [".next/**"]
},
2022-02-09 22:17:10 +00:00
"build": {
"dependsOn": ["^build"],
2022-02-09 22:17:10 +00:00
"outputs": ["dist/**", ".next/**"]
},
"db-deploy": {
"cache": false,
"inputs": ["./migrations/**/*.sql", "./prisma/migrations/**/*.sql"],
"outputs": []
},
"db-seed": { "outputs": [] },
2022-02-09 23:59:34 +00:00
"deploy": {
"cache": false,
"dependsOn": ["@calcom/web#build"],
"outputs": []
2022-02-09 23:59:34 +00:00
},
2022-02-09 22:17:10 +00:00
"clean": {
"cache": false
},
"dev": {
"dependsOn": ["//#env-check:common", "//#env-check:app-store"],
"outputs": [],
2022-02-09 22:17:10 +00:00
"cache": false
2022-02-09 22:37:50 +00:00
},
"dx": {
"cache": false,
"outputs": []
2022-02-09 22:37:50 +00:00
},
"lint": {
"cache": false,
2022-02-09 22:37:50 +00:00
"outputs": []
2022-02-09 22:45:25 +00:00
},
"lint:report": {
"cache": false,
"outputs": ["lint-results"]
},
2022-05-27 19:49:13 +00:00
"post-install": {
"outputs": ["../../node_modules/@prisma/client/**", "../../node_modules/@prisma/admin-client/**"],
"inputs": ["./schema.prisma", "./prisma/schema.prisma"]
2022-05-27 19:49:13 +00:00
},
2022-02-10 18:51:25 +00:00
"start": {},
"embed-tests": {
"cache": false
},
"embed-tests-quick": {
"cache": false
},
2022-02-10 18:30:32 +00:00
"test": {
"dependsOn": ["^test"]
2022-02-10 18:30:32 +00:00
},
2022-02-15 17:44:30 +00:00
"test-e2e": {
"cache": false,
"dependsOn": ["@calcom/prisma#db-seed", "@calcom/web#test", "@calcom/web#build"]
2022-02-15 17:44:30 +00:00
},
2022-02-09 22:45:25 +00:00
"type-check": {
"cache": false,
2022-02-09 22:45:25 +00:00
"outputs": []
},
"@calcom/embed-core#embed-tests-update-snapshots:ci": {
"dependsOn": ["@calcom/web#build"]
},
"embed-tests-update-snapshots:ci": {
"dependsOn": ["^embed-tests-update-snapshots:ci"]
},
"@calcom/app-store-cli#build": {
"cache": false,
"inputs": ["../../app-store/**/**"],
"outputs": ["../../app-store/apps.server.generated.ts", "../../app-store/apps.browser.generated.tsx"]
},
"//#env-check:common": {
"inputs": ["./.env.example"],
"outputs": ["./.env"]
},
"//#env-check:app-store": {
"inputs": ["./.env.appStore.example"],
"outputs": ["./.env.appStore"]
2022-02-10 19:00:12 +00:00
}
2022-02-09 22:17:10 +00:00
}
}