From 0830abf057033642aaad19cac398bbe7dc2d5bd5 Mon Sep 17 00:00:00 2001 From: zomars Date: Wed, 22 Jun 2022 13:30:02 -0600 Subject: [PATCH] Scripts should be as pure as possible --- package.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 493a5929fd..efd55309d7 100644 --- a/package.json +++ b/package.json @@ -7,13 +7,11 @@ "author": "Cal.com Inc.", "private": true, "scripts": { - "app-store:generate": "yarn workspace @calcom/app-store-cli generate", - "build": "yarn app-store:generate && next build", + "build": "next build", "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next", "dev": "PORT=3002 next dev", "lint-fix": "next lint --fix && prettier --write .", "lint": "next lint", - "prebuild": "cd ../.. && yarn workspace @calcom/prisma generate-schemas", "start": "PORT=3002 next start", "test": "jest --detectOpenHandles --passWithNoTests", "type-check": "tsc --pretty --noEmit" @@ -25,6 +23,7 @@ "node-mocks-http": "^1.11.0" }, "dependencies": { + "@calcom/app-store-cli": "*", "@calcom/prisma": "*", "@sentry/nextjs": "^6.19.7", "modify-response-middleware": "^1.1.0",