From 784c1e8a8b54ae2d553a616f9dfbd33cf3e315d9 Mon Sep 17 00:00:00 2001 From: Will Ernst Date: Sun, 23 Jul 2023 22:04:33 -0700 Subject: [PATCH] run builds in order --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ac3a4968..2f1da3bf 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,8 @@ "packages/*" ], "scripts": { - "build:packages": "yarn workspaces foreach --all run build", - "release:packages": "yarn build:packages && yarn workspaces foreach --all run publish-pkg && yarn tag:packages", + "build:packages": "yarn workspace @triplit/db run build && yarn workspace @triplit/client run build && yarn workspace @triplit/react run build", + "release:packages": "yarn build:packages && yarn workspace @triplit/db run publish-pkg && yarn workspace @triplit/client run publish-pkg && yarn workspace @triplit/react run publish-pkg && yarn tag:packages", "tag:packages": "git pull --tags -f && yarn changeset tag", "lint": "yarn workspaces foreach --all run lint", "version": "yarn changeset version && yarn install --mode update-lockfile",