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
|
- 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
|
||||||
|
4
build.ts
4
build.ts
@ -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)
|
||||||
|
2
jsr.json
2
jsr.json
@ -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": {
|
||||||
|
@ -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": {
|
||||||
|
@ -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)}`);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user