From 947bf7ac8b7d51d5bb1e34bec5238bb915105b89 Mon Sep 17 00:00:00 2001 From: Robin Malfait Date: Fri, 28 Jan 2022 13:31:24 +0100 Subject: [PATCH] only build @headlessui/react and @headlessui/vue This used to also build the individual playground packages but that's not needed on CI (nor locally). Because Vercel will build them for us. This will safe us some time on CI, since we can run them in parallel now and only build the actual libraries. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9f669eb..89c1170 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "playground-vue": "yarn workspace playground-vue dev", "vue-playground": "yarn workspace playground-vue dev", "clean": "yarn workspaces run clean", - "build": "yarn workspaces run build", + "build": "npm-run-all -p 'react build' 'vue build'", "test": "./scripts/test.sh", "lint": "./scripts/lint.sh", "lint-check": "CI=true ./scripts/lint.sh"