chore: bump version to 0.1.3, update dependencies, and modify publish workflow

This commit is contained in:
Huakun Shen 2025-02-07 01:13:13 -05:00
parent 0c7ea413c4
commit 5b0d68a0d1
No known key found for this signature in database
10 changed files with 21 additions and 15 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

BIN
bun.lockb

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "@kunkun/kunkun-ext-system-info",
"version": "0.1.2",
"version": "0.1.3",
"license": "MIT",
"exports": "./mod.ts",
"publish": {

View File

@ -2,7 +2,7 @@
"$schema": "https://schema.kunkun.sh",
"name": "kunkun-ext-system-info",
"license": "MIT",
"version": "0.1.2",
"version": "0.1.3",
"repository": "https://github.com/kunkunsh/kunkun-ext-system-info",
"kunkun": {
"name": "System Info",
@ -13,7 +13,9 @@
"type": "iconify",
"value": "grommet-icons:system"
},
"demoImages": ["https://i.imgur.com/SrIIlCa.png"],
"demoImages": [
"https://i.imgur.com/SrIIlCa.png"
],
"permissions": [
"system-info:all",
"clipboard:read-text",
@ -42,7 +44,10 @@
"type": "iconify",
"value": "emojione:battery"
},
"cmds": []
"cmds": [],
"platforms": [
"macos"
]
}
]
},
@ -59,7 +64,7 @@
"format": "prettier --write ."
},
"dependencies": {
"@kksh/api": "^0.0.52",
"@kksh/api": "^0.1.1",
"@kksh/svelte5": "0.1.10",
"clsx": "^2.1.1",
"lucide-svelte": "^0.462.0",

View File

@ -1,6 +1,6 @@
import { watch } from 'fs';
import { join } from 'path';
import { refreshTemplateWorkerExtension } from '@kksh/api/dev';
import { refreshTemplateWorkerCommand } from '@kksh/api/dev';
import { $ } from 'bun';
const entrypoints = ['./template-src/battery-info.ts'];
@ -17,7 +17,7 @@ async function build() {
minify: false
});
if (Bun.argv.includes('dev')) {
await refreshTemplateWorkerExtension();
await refreshTemplateWorkerCommand();
}
} catch (error) {
console.error(error);

View File

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

View File

@ -3,7 +3,7 @@
import { ModeWatcher } from 'mode-watcher';
import { ThemeWrapper, updateTheme } from '@kksh/svelte5';
import { onMount } from 'svelte';
import { ui } from '@kksh/api/ui/iframe';
import { ui } from '@kksh/api/ui/custom';
onMount(() => {
ui.registerDragRegion();

View File

@ -1,6 +1,6 @@
<script lang="ts">
import { base } from '$app/paths';
import { clipboard, notification, ui, toast } from '@kksh/api/ui/iframe';
import { clipboard, notification, ui, toast } from '@kksh/api/ui/custom';
import {
ModeToggle,
Button,

View File

@ -13,9 +13,9 @@ import {
toast,
ui,
utils,
WorkerExtension,
TemplateUiCommand,
type ListSchema
} from '@kksh/api/ui/worker';
} from '@kksh/api/ui/template';
import { getMacBatteryInfo } from './mac-ioreg';
async function parseBatteryInfo(
@ -196,7 +196,7 @@ async function run() {
});
}
class BatteryInfo extends WorkerExtension {
class BatteryInfo extends TemplateUiCommand {
intervalId: NodeJS.Timer | null = null;
async onBeforeGoBack() {
if (this.intervalId) {

View File

@ -12,8 +12,8 @@ import {
toast,
ui,
utils,
WorkerExtension
} from '@kksh/api/ui/worker';
TemplateUiCommand
} from '@kksh/api/ui/template';
export async function getMacBatteryInfo() {
const batteryInfoRet = await shell