From b875f9691fa7e9314a13696edca08472bea3a0c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Buben=C3=ADk?= Date: Fri, 15 May 2026 17:42:42 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=94=A7=20chore:=20Disable=20Husky=20i?= =?UTF-8?q?n=20workflows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .husky/pre-push | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.husky/pre-push b/.husky/pre-push index 6c60fd7..a91fb55 100644 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -1 +1,3 @@ +[ -n "$CI" ] && exit 0 + pnpm run check From dbb84891735e21fdb60b9f255eaa2d7e0ec0b6ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Buben=C3=ADk?= Date: Sat, 16 May 2026 21:31:54 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=94=A7=20chore:=20Update=20badges?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .badges.json | 37 ++++++++++++----------------------- .github/workflows/release.yml | 4 ++-- 2 files changed, 14 insertions(+), 27 deletions(-) diff --git a/.badges.json b/.badges.json index 1cefbe6..e1c8ada 100644 --- a/.badges.json +++ b/.badges.json @@ -1,34 +1,21 @@ { - "dir": ".github/badges", - "files": [ - { - "fileName": "version.svg", - "label": "npm", - "status": "2.1.19", - "icon": "npm" - }, - { - "fileName": "coverage.svg", + "outputDir": ".github/badges", + "badges": { + "version": { "label": "npm", "value": "@version", "icon": "npm" }, + "coverage": { "label": "coverage", - "status": "93.89", + "value": "$BADGES_COVERAGE", + "format": "percent", "icon": "vitest" }, - { - "fileName": "size.svg", + "size": { "label": "minzipped size", - "status": "19939", + "value": "$BADGES_SIZE", + "format": "bytes", "icon": "speed", "color": "43b816" }, - { - "fileName": "maintainer.svg", - "label": "maintainer", - "status": "Localazy" - }, - { - "fileName": "license.svg", - "label": "license", - "status": "MIT" - } - ] + "maintainer": { "label": "maintainer", "value": "Localazy" }, + "license": { "label": "license", "value": "@license" } + } } diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bc3a4bc..354725e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,7 @@ jobs: run: pnpm install --frozen-lockfile - name: Run release script - run: pnpx @localazy/workflow-scripts create-release-pr + run: npx @localazy/workflow-scripts create-release-pr env: GITHUB_TOKEN: ${{ steps.auth.outputs.token }} @@ -108,6 +108,6 @@ jobs: echo "version=${VERSION}" >> "$GITHUB_OUTPUT" - name: Create GitHub Release - run: pnpx @localazy/workflow-scripts create-github-release "${{ steps.git-tag.outputs.version }}" + run: npx @localazy/workflow-scripts create-github-release "${{ steps.git-tag.outputs.version }}" env: GITHUB_TOKEN: ${{ steps.auth.outputs.token }}