diff --git a/.github/workflows/jsr-publish.yml b/.github/workflows/jsr-publish.yml index 48bbe9d..bf70a01 100644 --- a/.github/workflows/jsr-publish.yml +++ b/.github/workflows/jsr-publish.yml @@ -19,5 +19,6 @@ jobs: run: bun install - name: Build run: bun run build + - run: bunx kksh@latest verify --publish - name: Publish package run: npx jsr publish diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index f55d9ed..c3faf05 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -1,6 +1,3 @@ -# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created -# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages - name: NPM Package Publish on: @@ -25,20 +22,16 @@ jobs: - uses: oven-sh/setup-bun@v2 - run: bun install - run: bun run build - - run: | + - run: bunx kksh@latest verify --publish + - name: Check if version is already published + run: | + PACKAGE_VERSION=$(node -p "require('./package.json').version") PACKAGE_NAME=$(jq -r '.name' package.json) - PACKAGE_VERSION=$(jq -r '.version' package.json) - - # Get the version from npm registry - REGISTRY_VERSION=$(npm show "$PACKAGE_NAME" version) - - # Compare versions - if [ "$PACKAGE_VERSION" == "$REGISTRY_VERSION" ]; then - echo "Version $PACKAGE_VERSION already exists in the npm registry." - exit 0 - else - echo "Version $PACKAGE_VERSION does not exist in the npm registry. Proceeding..." - npm publish --provenance --access public - fi + npm view $PACKAGE_NAME@$PACKAGE_VERSION + continue-on-error: true + id: check_version + - name: Publish + if: steps.check_version.outcome != 'success' + run: npm publish --provenance --access public env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} diff --git a/bun.lockb b/bun.lockb index 6288ead..e04d661 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/jsr.json b/jsr.json index 5f7e760..8e2770e 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@kunkun/kunkun-ext-qrcode", - "version": "0.1.4", + "version": "0.1.5", "license": "MIT", "exports": "./mod.ts", "publish": { diff --git a/package.json b/package.json index 18929ef..fb317e0 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "$schema": "https://schema.kunkun.sh/", "name": "kunkun-ext-qrcode", "license": "MIT", - "version": "0.1.4", + "version": "0.1.5", "description": "QRCode Extension", "repository": "https://github.com/kunkunsh/kunkun-ext-qrcode", "kunkun": { @@ -63,7 +63,7 @@ "format": "prettier --write ." }, "dependencies": { - "@kksh/api": "^0.0.52", + "@kksh/api": "^0.1.1", "@kksh/svelte": "0.1.4", "clsx": "^2.1.1", "easyqrcodejs": "^4.6.1", diff --git a/src/lib/components/ThemeCustomizer.svelte b/src/lib/components/ThemeCustomizer.svelte index 6901dc7..fea3b63 100644 --- a/src/lib/components/ThemeCustomizer.svelte +++ b/src/lib/components/ThemeCustomizer.svelte @@ -1,6 +1,6 @@