fix: update package version to 0.1.5, modify publish workflow, and change API imports to custom

This commit is contained in:
Huakun Shen 2025-02-07 01:07:30 -05:00
parent 2b0906ba1c
commit 7b3eb7725e
No known key found for this signature in database
9 changed files with 18 additions and 24 deletions

View File

@ -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

View File

@ -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}}

BIN
bun.lockb

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "@kunkun/kunkun-ext-qrcode",
"version": "0.1.4",
"version": "0.1.5",
"license": "MIT",
"exports": "./mod.ts",
"publish": {

View File

@ -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",

View File

@ -1,6 +1,6 @@
<script lang="ts">
import { ThemeCustomizerButton, type ThemeConfig, updateTheme } from '@kksh/svelte';
import { ui } from '@kksh/api/ui/iframe';
import { ui } from '@kksh/api/ui/custom';
import { onMount } from 'svelte';
let config: ThemeConfig = {

View File

@ -1,7 +1,7 @@
<script>
import '../app.css';
import { ModeWatcher } from 'mode-watcher';
import { ui } from '@kksh/api/ui/iframe';
import { ui } from '@kksh/api/ui/custom';
import { ThemeWrapper, updateTheme } from '@kksh/svelte';
import { onMount } from 'svelte';

View File

@ -4,7 +4,7 @@
import QR from '$lib/components/QR.svelte';
import QRCode from 'easyqrcodejs';
import { onMount } from 'svelte';
import { clipboard, fs, dialog, open, event, ui } from '@kksh/api/ui/iframe';
import { clipboard, fs, dialog, open, event, ui } from '@kksh/api/ui/custom';
import * as v from 'valibot';
import {
ClipboardCopyIcon,

View File

@ -1,7 +1,7 @@
<script lang="ts">
import jsQR from 'jsqr';
import { base } from '$app/paths';
import { clipboard, open } from '@kksh/api/ui/iframe';
import { clipboard, open } from '@kksh/api/ui/custom';
import { Button } from '@kksh/svelte';
import { ModeWatcher } from 'mode-watcher';
import { onMount } from 'svelte';