From c6a84168038a1bb3c1926a24f502f3901f7fba20 Mon Sep 17 00:00:00 2001 From: martines3000 Date: Wed, 24 Apr 2024 19:16:40 +0200 Subject: [PATCH] fix: resolve lint issues with changeset version scripts --- scripts/changesets/version-beta.sh | 1 + scripts/changesets/version-stable.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/scripts/changesets/version-beta.sh b/scripts/changesets/version-beta.sh index c954693ab..47a3fbe63 100755 --- a/scripts/changesets/version-beta.sh +++ b/scripts/changesets/version-beta.sh @@ -6,6 +6,7 @@ pnpm changeset version && \ node scripts/changesets/update-snap-version.mjs && \ pnpm install --no-frozen-lockfile && \ pnpm build && \ + pnpm lint:fix && \ git add --all && \ git commit -m "chore: update versions" && \ echo "Successfully updated beta version!" || \ diff --git a/scripts/changesets/version-stable.sh b/scripts/changesets/version-stable.sh index 92866d0ed..640e9f4c9 100755 --- a/scripts/changesets/version-stable.sh +++ b/scripts/changesets/version-stable.sh @@ -8,6 +8,7 @@ pnpm changeset pre exit && \ node scripts/changesets/update-snap-version.mjs && \ pnpm install --no-frozen-lockfile && \ pnpm build && \ + pnpm lint:fix && \ git add --all && \ git commit -m "chore: update versions" && \ echo "Successfully updated stable version!" || \