mirror of
https://github.com/kunkunsh/kunkun-ext-qrcode.git
synced 2025-04-03 18:36:41 +00:00
fix: update package version to 0.1.5, modify publish workflow, and change API imports to custom
This commit is contained in:
parent
2b0906ba1c
commit
7b3eb7725e
1
.github/workflows/jsr-publish.yml
vendored
1
.github/workflows/jsr-publish.yml
vendored
@ -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
|
||||||
|
27
.github/workflows/npm-publish.yml
vendored
27
.github/workflows/npm-publish.yml
vendored
@ -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}}
|
||||||
|
2
jsr.json
2
jsr.json
@ -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": {
|
||||||
|
@ -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",
|
||||||
|
@ -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 = {
|
||||||
|
@ -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';
|
||||||
|
|
||||||
|
@ -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,
|
||||||
|
@ -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';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user