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 - uses: oven-sh/setup-bun@v2
- name: Install dependencies - name: Install dependencies
run: bun install run: bun install
- name: Verify Package
run: bunx kksh verify --publish
- name: Build - name: Build
run: bun run build run: bun run build
- name: Publish package - name: Publish package

View File

@ -1,6 +1,6 @@
import { watch } from "fs" import { watch } from "fs"
import { join } from "path" import { join } from "path"
import { refreshTemplateWorkerExtension } from "@kksh/api/dev" import { refreshTemplateWorkerCommand } from "@kksh/api/dev"
import { $ } from "bun" import { $ } from "bun"
const entrypoints = ["./src/index.ts"] const entrypoints = ["./src/index.ts"]
@ -11,7 +11,7 @@ async function build() {
await $`bun build --minify --target=browser --outdir=./dist ${entrypoint}` await $`bun build --minify --target=browser --outdir=./dist ${entrypoint}`
} }
if (Bun.argv.includes("dev")) { if (Bun.argv.includes("dev")) {
await refreshTemplateWorkerExtension() await refreshTemplateWorkerCommand()
} }
} catch (error) { } catch (error) {
console.error(error) console.error(error)

BIN
bun.lockb

Binary file not shown.

View File

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

View File

@ -2,7 +2,7 @@
"license": "MIT", "license": "MIT",
"$schema": "https://schema.kunkun.sh", "$schema": "https://schema.kunkun.sh",
"name": "kunkun-ext-ossinsight", "name": "kunkun-ext-ossinsight",
"version": "0.0.5", "version": "0.0.6",
"type": "module", "type": "module",
"repository": { "repository": {
"type": "git", "type": "git",
@ -47,7 +47,7 @@
}, },
"dependencies": { "dependencies": {
"@hk/ossinsight-client": "npm:@jsr/hk__ossinsight-client", "@hk/ossinsight-client": "npm:@jsr/hk__ossinsight-client",
"@kksh/api": "0.0.52", "@kksh/api": "^0.1.1",
"i18next": "^24.2.1" "i18next": "^24.2.1"
}, },
"devDependencies": { "devDependencies": {

View File

@ -12,14 +12,14 @@ import {
shell, shell,
toast, toast,
ui, ui,
WorkerExtension, TemplateUiCommand,
} from "@kksh/api/ui/worker"; } from "@kksh/api/ui/template";
import { client, listTrendingRepos } from "@hk/ossinsight-client/heyapi"; import { client, listTrendingRepos } from "@hk/ossinsight-client/heyapi";
client.setConfig({ client.setConfig({
baseUrl: "https://api.ossinsight.io/v1", baseUrl: "https://api.ossinsight.io/v1",
}); });
class TrendingRepos extends WorkerExtension { class TrendingRepos extends TemplateUiCommand {
async onFormSubmit(value: Record<string, any>): Promise<void> { async onFormSubmit(value: Record<string, any>): Promise<void> {
console.log("Form submitted", value); console.log("Form submitted", value);
toast.success(`Form submitted: ${JSON.stringify(value)}`); toast.success(`Form submitted: ${JSON.stringify(value)}`);