From e0954d8d881223e58602d23b2084bf4c4c528623 Mon Sep 17 00:00:00 2001 From: Carl Whittaker Date: Mon, 26 Feb 2024 17:13:20 +0000 Subject: [PATCH] chore: remove check for local changes in prepublish script this prevents the publish from happening in CI since the change to the version number is isn't committed until after the publish is successful --- scripts/prepublish.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/prepublish.sh b/scripts/prepublish.sh index 79df46c5..0916529f 100755 --- a/scripts/prepublish.sh +++ b/scripts/prepublish.sh @@ -11,5 +11,3 @@ fi npm run test:ci npm run build - -git diff-index --quiet HEAD -- || (echo "Error: You have uncommitted changes. Please commit or stash them before pushing." && exit 1)