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: | run: |
bun install bun install
bun run build bun run build
bunx kksh verify --publish
bunx jsr publish --allow-slow-types bunx jsr publish --allow-slow-types

View File

@ -1,11 +1,11 @@
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"
async function build() { async function build() {
await $`bun build --minify --target=browser --outdir=./dist ./src/index.ts` await $`bun build --minify --target=browser --outdir=./dist ./src/index.ts`
await refreshTemplateWorkerExtension() await refreshTemplateWorkerCommand()
} }
const srcDir = join(import.meta.dir, "src") 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", "name": "@kunkun/kunkun-ext-vscode",
"version": "0.1.4", "version": "0.1.5",
"license": "MIT", "license": "MIT",
"exports": "./mod.ts", "exports": "./mod.ts",
"publish": { "publish": {

View File

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

View File

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