From 08413f198bdb29ac1d1a4014ff7d2d635f837286 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Fri, 26 May 2023 22:46:17 +0200 Subject: [PATCH] scripts: update to `pnpm` --- scripts/release-edge.sh | 8 ++++---- scripts/release.sh | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/scripts/release-edge.sh b/scripts/release-edge.sh index 49fe9d36..b3c42601 100755 --- a/scripts/release-edge.sh +++ b/scripts/release-edge.sh @@ -1,13 +1,13 @@ #!/bin/bash # Restore all git changes -git restore -s@ -SW -- example src test +git restore -s@ -SW -- . # Bump versions to edge -yarn jiti ./scripts/bump-edge +pnpm jiti ./scripts/bump-edge -# Resolve yarn -yarn +# Resolve pnpm +pnpm install # Update token if [[ ! -z ${NODE_AUTH_TOKEN} ]] ; then diff --git a/scripts/release.sh b/scripts/release.sh index 921d3d8d..4983629d 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -1,10 +1,10 @@ #!/bin/bash # Restore all git changes -git restore -s@ -SW -- example src test +git restore -s@ -SW -- . -# Resolve yarn -yarn +# Resolve pnpm +pnpm install # Update token if [[ ! -z ${NODE_AUTH_TOKEN} ]] ; then