diff --git a/.github/workflows/jsr-publish.yml b/.github/workflows/jsr-publish.yml index 48bbe9d..189ba2c 100644 --- a/.github/workflows/jsr-publish.yml +++ b/.github/workflows/jsr-publish.yml @@ -17,6 +17,8 @@ jobs: - uses: oven-sh/setup-bun@v2 - name: Install dependencies run: bun install + - name: Verify Package + run: bunx kksh verify --publish - name: Build run: bun run build - name: Publish package diff --git a/build.ts b/build.ts index a99deb5..f4118ae 100644 --- a/build.ts +++ b/build.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 = ["./src/index.ts"] @@ -11,7 +11,7 @@ async function build() { await $`bun build --minify --target=browser --outdir=./dist ${entrypoint}` } if (Bun.argv.includes("dev")) { - await refreshTemplateWorkerExtension() + await refreshTemplateWorkerCommand() } } catch (error) { console.error(error) diff --git a/bun.lockb b/bun.lockb index 3714ced..3de2f43 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/jsr.json b/jsr.json index 5d33a3c..188f5c2 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@kunkun/ext-ossinsight", - "version": "0.0.5", + "version": "0.0.6", "license": "MIT", "exports": "./mod.ts", "publish": { diff --git a/package.json b/package.json index 4ece386..cf07b47 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "license": "MIT", "$schema": "https://schema.kunkun.sh", "name": "kunkun-ext-ossinsight", - "version": "0.0.5", + "version": "0.0.6", "type": "module", "repository": { "type": "git", @@ -47,7 +47,7 @@ }, "dependencies": { "@hk/ossinsight-client": "npm:@jsr/hk__ossinsight-client", - "@kksh/api": "0.0.52", + "@kksh/api": "^0.1.1", "i18next": "^24.2.1" }, "devDependencies": { diff --git a/src/index.ts b/src/index.ts index daa9a70..1ff4102 100644 --- a/src/index.ts +++ b/src/index.ts @@ -12,14 +12,14 @@ import { shell, toast, ui, - WorkerExtension, -} from "@kksh/api/ui/worker"; + TemplateUiCommand, +} from "@kksh/api/ui/template"; import { client, listTrendingRepos } from "@hk/ossinsight-client/heyapi"; client.setConfig({ baseUrl: "https://api.ossinsight.io/v1", }); -class TrendingRepos extends WorkerExtension { +class TrendingRepos extends TemplateUiCommand { async onFormSubmit(value: Record): Promise { console.log("Form submitted", value); toast.success(`Form submitted: ${JSON.stringify(value)}`);