cal/turbo.json

148 lines
3.9 KiB
JSON
Raw Normal View History

2022-02-09 19:17:10 -03:00
{
"$schema": "https://turborepo.org/schema.json",
2022-02-09 19:37:50 -03:00
"baseBranch": "origin/main",
2022-02-09 19:17:10 -03:00
"pipeline": {
2022-05-26 14:44:23 -03:00
"@calcom/prisma#build": {
"dependsOn": ["post-install", "db-deploy"],
"outputs": []
2022-05-26 14:44:23 -03: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 15:30:32 -03: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 17:28:57 -03: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 17:28:57 -03:00
"outputs": [".next/**"]
},
2022-02-09 19:17:10 -03:00
"build": {
"dependsOn": ["^build"],
2022-02-09 19:17:10 -03:00
"outputs": ["dist/**", ".next/**"]
},
"db-deploy": {
"cache": false,
"inputs": ["./migrations/**/*.sql", "./prisma/migrations/**/*.sql"],
"outputs": []
},
"db-seed": { "outputs": [] },
2022-02-09 20:59:34 -03:00
"deploy": {
"cache": false,
"dependsOn": ["@calcom/web#build"],
"outputs": []
2022-02-09 20:59:34 -03:00
},
2022-02-09 19:17:10 -03:00
"clean": {
"cache": false
},
"dev": {
"dependsOn": ["//#env-check:common", "//#env-check:app-store"],
"outputs": [],
2022-02-09 19:17:10 -03:00
"cache": false
2022-02-09 19:37:50 -03:00
},
"dx": {
"cache": false,
"outputs": []
2022-02-09 19:37:50 -03:00
},
"lint": {
"cache": false,
2022-02-09 19:37:50 -03:00
"outputs": []
2022-02-09 19:45:25 -03:00
},
"lint:report": {
"cache": false,
"outputs": ["lint-results"]
},
2022-05-27 16:49:13 -03:00
"post-install": {
"outputs": ["../../node_modules/@prisma/client/**", "../../node_modules/@prisma/admin-client/**"],
"inputs": ["./schema.prisma", "./prisma/schema.prisma"]
2022-05-27 16:49:13 -03:00
},
2022-02-10 15:51:25 -03:00
"start": {},
"embed-tests": {
"cache": false
},
"embed-tests-quick": {
"cache": false
},
2022-02-10 15:30:32 -03:00
"test": {
"dependsOn": ["^test"]
2022-02-10 15:30:32 -03:00
},
2022-02-15 14:44:30 -03:00
"test-e2e": {
"cache": false,
"dependsOn": ["@calcom/prisma#db-seed", "@calcom/web#test", "@calcom/web#build"]
2022-02-15 14:44:30 -03:00
},
2022-02-09 19:45:25 -03:00
"type-check": {
"cache": false,
2022-02-09 19:45:25 -03:00
"outputs": []
},
"@calcom/embed-core#embed-tests-update-snapshots:ci": {
"dependsOn": ["@calcom/web#build"]
},
2022-06-22 18:10:49 -03:00
"@calcom/embed-core#build": {
"cache": false,
"outputs": ["../../../apps/web/public/embed/**"]
},
"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 16:00:12 -03:00
}
2022-02-09 19:17:10 -03:00
}
}