From 108d74d739cf19fa284b71b9c185e8c8ba731c39 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Wed, 25 Oct 2023 16:25:12 +0200 Subject: [PATCH] build: fix version update for yarn workspace --- scripts/update-cypress-latest-other.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/update-cypress-latest-other.sh b/scripts/update-cypress-latest-other.sh index 37fb60d45..5e13d58b6 100755 --- a/scripts/update-cypress-latest-other.sh +++ b/scripts/update-cypress-latest-other.sh @@ -15,11 +15,8 @@ echo echo updating examples/start-and-yarn-workspaces to cypress@latest cd start-and-yarn-workspaces for i in 1 2; do -cd workspace-${i} echo updating workspace-${i} -npm install cypress@latest --save-dev --save-exact --package-lock=false -npm ls cypress -cd .. +yarn workspace workspace-${i} add cypress --dev --exact done echo echo updating yarn lockfile for start-and-yarn-workspaces