... doesnt seem to run dependencies first. So, ensure that using pipeline (#3254)
parent
6db129e3bf
commit
f9cc71d120
|
@ -28,7 +28,8 @@
|
||||||
"embed-tests-quick": "QUICK=true yarn embed-tests",
|
"embed-tests-quick": "QUICK=true yarn embed-tests",
|
||||||
"embed-tests-update-snapshots:ci": "yarn embed-tests-quick --update-snapshots",
|
"embed-tests-update-snapshots:ci": "yarn embed-tests-quick --update-snapshots",
|
||||||
"prepare": "NEXT_PUBLIC_WEBAPP_URL='https://app.cal.com' yarn build",
|
"prepare": "NEXT_PUBLIC_WEBAPP_URL='https://app.cal.com' yarn build",
|
||||||
"publish-prod:patch": "yarn publish --access public --patch"
|
"publish-prod:patch": "yarn publish --access public --patch",
|
||||||
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf ../../../apps/web/public/embed"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist"
|
"dist"
|
||||||
|
|
|
@ -20,7 +20,8 @@
|
||||||
"embed-tests-update-snapshots:ci": "yarn embed-tests-quick --update-snapshots",
|
"embed-tests-update-snapshots:ci": "yarn embed-tests-quick --update-snapshots",
|
||||||
"embed-web-start": "yarn workspace @calcom/web start",
|
"embed-web-start": "yarn workspace @calcom/web start",
|
||||||
"embed-dev": "yarn workspace @calcom/embed-react dev",
|
"embed-dev": "yarn workspace @calcom/embed-react dev",
|
||||||
"publish-prod:patch": "yarn publish --access public --patch"
|
"publish-prod:patch": "yarn publish --access public --patch",
|
||||||
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
||||||
},
|
},
|
||||||
"main": "./dist/Cal.umd.js",
|
"main": "./dist/Cal.umd.js",
|
||||||
"module": "./dist/Cal.es.js",
|
"module": "./dist/Cal.es.js",
|
||||||
|
|
|
@ -15,7 +15,8 @@
|
||||||
"type-check": "tsc --pretty --noEmit",
|
"type-check": "tsc --pretty --noEmit",
|
||||||
"lint": "eslint --ext .ts,.js src",
|
"lint": "eslint --ext .ts,.js src",
|
||||||
"prepare": "NEXT_PUBLIC_EMBED_LIB_URL='https://app.cal.com/embed/embed.js' NEXT_PUBLIC_WEBAPP_URL='https://app.cal.com' yarn build",
|
"prepare": "NEXT_PUBLIC_EMBED_LIB_URL='https://app.cal.com/embed/embed.js' NEXT_PUBLIC_WEBAPP_URL='https://app.cal.com' yarn build",
|
||||||
"publish-prod:patch": "yarn publish --access public --patch"
|
"publish-prod:patch": "yarn publish --access public --patch",
|
||||||
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist"
|
"dist"
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
},
|
},
|
||||||
"@calcom/website#build": {
|
"@calcom/website#build": {
|
||||||
"dependsOn": [
|
"dependsOn": [
|
||||||
|
"^build",
|
||||||
"$NEXT_PUBLIC_STRIPE_FREE_PLAN_PRICE",
|
"$NEXT_PUBLIC_STRIPE_FREE_PLAN_PRICE",
|
||||||
"$NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRICE",
|
"$NEXT_PUBLIC_STRIPE_PREMIUM_PLAN_PRICE",
|
||||||
"$NEXT_PUBLIC_STRIPE_PRO_PLAN_PRICE",
|
"$NEXT_PUBLIC_STRIPE_PRO_PLAN_PRICE",
|
||||||
|
|
Loading…
Reference in New Issue