mirror of
https://github.com/kunkunsh/kunkun-ext-ossinsight.git
synced 2025-04-03 17:16:41 +00:00
chore: Update package version to 0.0.6 and enhance publish workflow with verification step
This commit is contained in:
parent
a0d8887312
commit
48cd43595c
2
.github/workflows/jsr-publish.yml
vendored
2
.github/workflows/jsr-publish.yml
vendored
@ -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
|
||||
|
4
build.ts
4
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)
|
||||
|
2
jsr.json
2
jsr.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@kunkun/ext-ossinsight",
|
||||
"version": "0.0.5",
|
||||
"version": "0.0.6",
|
||||
"license": "MIT",
|
||||
"exports": "./mod.ts",
|
||||
"publish": {
|
||||
|
@ -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": {
|
||||
|
@ -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)}`);
|
||||
|
Loading…
x
Reference in New Issue
Block a user