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/bun.lockb b/bun.lockb index 9b776c5..2e9e31a 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/jsr.json b/jsr.json index 7064863..2d97553 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@kunkun/kunkun-ext-system-info", - "version": "0.1.2", + "version": "0.1.3", "license": "MIT", "exports": "./mod.ts", "publish": { diff --git a/package.json b/package.json index 6174c10..abc58d3 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/scripts/build-template-ext.ts b/scripts/build-template-ext.ts index 96d07da..7295b4d 100644 --- a/scripts/build-template-ext.ts +++ b/scripts/build-template-ext.ts @@ -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); diff --git a/src/lib/components/ThemeCustomizer.svelte b/src/lib/components/ThemeCustomizer.svelte index d7b86b2..f36ebbf 100644 --- a/src/lib/components/ThemeCustomizer.svelte +++ b/src/lib/components/ThemeCustomizer.svelte @@ -1,6 +1,6 @@