From 011abb09ecb9332a4f9aa42737d99c856fd62d8d Mon Sep 17 00:00:00 2001 From: Davide Carpini Date: Mon, 28 Oct 2024 16:52:15 +0100 Subject: [PATCH] fix: publish packages script --- scripts/prepare-packages.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/prepare-packages.ts b/scripts/prepare-packages.ts index be084ca0..61bec4db 100644 --- a/scripts/prepare-packages.ts +++ b/scripts/prepare-packages.ts @@ -72,11 +72,11 @@ const preparePackages = async () => { console.log('\n______________________________________________________\n\n'); console.log( - ` - 🚀🚀🚀 Release branch is ready to be merged 🚀🚀🚀`, - ` - 📝 Create the PR for the release branch v${version}`, - ` - 🔖 When the PR is merged, create the release on github called ${version}`, - ` - 📝 Then pull the tag and checkout the release branch`, - ` - 📝 Then run 'yarn changeset publish' to publish the packages`, + ` - 🚀🚀🚀 Release branch is ready to be merged 🚀🚀🚀\n\n`, + ` - 📝 Create the PR for the release branch v${version}\n`, + ` - 🔖 When the PR is merged, create the release on github called ${version}\n`, + ` - 📝 Then pull the tag and checkout the release branch\n`, + ` - 📝 Then run 'yarn changeset publish' to publish the packages\n`, ); console.log('\n______________________________________________________\n\n'); };