chore: Update package version to 0.0.6 and enhance publish workflow with verification step

This commit is contained in:
Huakun Shen 2025-02-07 00:28:25 -05:00
parent a0d8887312
commit 48cd43595c
No known key found for this signature in database
6 changed files with 10 additions and 8 deletions

View File

@ -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

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 = ["./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)

BIN
bun.lockb

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "@kunkun/ext-ossinsight",
"version": "0.0.5",
"version": "0.0.6",
"license": "MIT",
"exports": "./mod.ts",
"publish": {

View File

@ -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": {

View File

@ -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<string, any>): Promise<void> {
console.log("Form submitted", value);
toast.success(`Form submitted: ${JSON.stringify(value)}`);