From d311ce40b9cff8740376e16c2d6a7b3ae7a9673c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20S=C3=B3jko?= Date: Tue, 5 Jul 2022 10:57:39 +0200 Subject: [PATCH] fix: add verbose lerna loglevel on publishing for debug purposes --- .github/workflows/publish.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8eb53b27e..d81411df1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -41,4 +41,4 @@ jobs: - name: Bump Prod Version run: | yarn release:prod - yarn publish:prod \ No newline at end of file + yarn publish:prod diff --git a/package.json b/package.json index 9bd6caefe..2067c834e 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "prepare": "husky install", "reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock && yarn install", "release:prod": "lerna version --conventional-commits --yes -m \"chore(release): publish\"", - "publish:prod": "lerna publish from-git --yes --no-verify-access", + "publish:prod": "lerna publish from-git --yes --no-verify-access --loglevel verbose", "version": "yarn install --no-immutable && git add yarn.lock", "postversion": "./scripts/push-tags-one-by-one.sh", "workspace:list": " yarn lerna list -all",