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 run: bun install
- name: Build - name: Build
run: bun run build run: bun run build
- run: bunx kksh@latest verify --publish
- name: Publish package - name: Publish package
run: npx jsr publish 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 name: NPM Package Publish
on: on:
@ -25,20 +22,16 @@ jobs:
- uses: oven-sh/setup-bun@v2 - uses: oven-sh/setup-bun@v2
- run: bun install - run: bun install
- run: bun run build - 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_NAME=$(jq -r '.name' package.json)
PACKAGE_VERSION=$(jq -r '.version' package.json) npm view $PACKAGE_NAME@$PACKAGE_VERSION
continue-on-error: true
# Get the version from npm registry id: check_version
REGISTRY_VERSION=$(npm show "$PACKAGE_NAME" version) - name: Publish
if: steps.check_version.outcome != 'success'
# Compare versions run: npm publish --provenance --access public
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
env: env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

BIN
bun.lockb

Binary file not shown.

View File

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

View File

@ -2,7 +2,7 @@
"$schema": "https://schema.kunkun.sh/", "$schema": "https://schema.kunkun.sh/",
"name": "kunkun-ext-qrcode", "name": "kunkun-ext-qrcode",
"license": "MIT", "license": "MIT",
"version": "0.1.4", "version": "0.1.5",
"description": "QRCode Extension", "description": "QRCode Extension",
"repository": "https://github.com/kunkunsh/kunkun-ext-qrcode", "repository": "https://github.com/kunkunsh/kunkun-ext-qrcode",
"kunkun": { "kunkun": {
@ -63,7 +63,7 @@
"format": "prettier --write ." "format": "prettier --write ."
}, },
"dependencies": { "dependencies": {
"@kksh/api": "^0.0.52", "@kksh/api": "^0.1.1",
"@kksh/svelte": "0.1.4", "@kksh/svelte": "0.1.4",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"easyqrcodejs": "^4.6.1", "easyqrcodejs": "^4.6.1",

View File

@ -1,6 +1,6 @@
<script lang="ts"> <script lang="ts">
import { ThemeCustomizerButton, type ThemeConfig, updateTheme } from '@kksh/svelte'; 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'; import { onMount } from 'svelte';
let config: ThemeConfig = { let config: ThemeConfig = {

View File

@ -1,7 +1,7 @@
<script> <script>
import '../app.css'; import '../app.css';
import { ModeWatcher } from 'mode-watcher'; 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 { ThemeWrapper, updateTheme } from '@kksh/svelte';
import { onMount } from 'svelte'; import { onMount } from 'svelte';

View File

@ -4,7 +4,7 @@
import QR from '$lib/components/QR.svelte'; import QR from '$lib/components/QR.svelte';
import QRCode from 'easyqrcodejs'; import QRCode from 'easyqrcodejs';
import { onMount } from 'svelte'; 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 * as v from 'valibot';
import { import {
ClipboardCopyIcon, ClipboardCopyIcon,

View File

@ -1,7 +1,7 @@
<script lang="ts"> <script lang="ts">
import jsQR from 'jsqr'; import jsQR from 'jsqr';
import { base } from '$app/paths'; 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 { Button } from '@kksh/svelte';
import { ModeWatcher } from 'mode-watcher'; import { ModeWatcher } from 'mode-watcher';
import { onMount } from 'svelte'; import { onMount } from 'svelte';