bump version to 0.1.5 in package.json, update @kksh/api dependency to ^0.1.1, and refactor build process

This commit is contained in:
Huakun Shen 2025-02-07 01:18:40 -05:00
parent 52f9aa53dd
commit 2a8738aa2f
No known key found for this signature in database
6 changed files with 9 additions and 8 deletions

View File

@ -22,4 +22,5 @@ jobs:
run: |
bun install
bun run build
bunx kksh verify --publish
bunx jsr publish --allow-slow-types

View File

@ -1,11 +1,11 @@
import { watch } from "fs"
import { join } from "path"
import { refreshTemplateWorkerExtension } from "@kksh/api/dev"
import { refreshTemplateWorkerCommand } from "@kksh/api/dev"
import { $ } from "bun"
async function build() {
await $`bun build --minify --target=browser --outdir=./dist ./src/index.ts`
await refreshTemplateWorkerExtension()
await refreshTemplateWorkerCommand()
}
const srcDir = join(import.meta.dir, "src")

BIN
bun.lockb

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "@kunkun/kunkun-ext-vscode",
"version": "0.1.4",
"version": "0.1.5",
"license": "MIT",
"exports": "./mod.ts",
"publish": {

View File

@ -1,7 +1,7 @@
{
"$schema": "https://schema.kunkun.sh/",
"name": "kunkun-ext-vscode",
"version": "0.1.4",
"version": "0.1.5",
"license": "MIT",
"repository": "https://github.com/kunkunsh/kunkun-ext-vscode",
"type": "module",
@ -78,7 +78,7 @@
"build": "bun build.ts"
},
"dependencies": {
"@kksh/api": "^0.0.52",
"@kksh/api": "^0.1.1",
"valibot": "1.0.0-beta.11"
},
"devDependencies": {

View File

@ -10,8 +10,8 @@ import {
shell,
toast,
ui,
WorkerExtension
} from "@kksh/api/ui/worker"
TemplateUiCommand
} from "@kksh/api/ui/template"
import { array, boolean, flatten, object, safeParse, string, type InferOutput } from "valibot"
const Project = object({
@ -59,7 +59,7 @@ function openWithVSCode(path: string) {
})
}
class VSCodeProjectManager extends WorkerExtension {
class VSCodeProjectManager extends TemplateUiCommand {
async load() {
ui.render(new List.List({ items: [] }))
const platform = await os.platform()