mirror of
https://github.com/kunkunsh/kunkun-ext-vscode.git
synced 2025-04-03 01:56:43 +00:00
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:
parent
52f9aa53dd
commit
2a8738aa2f
1
.github/workflows/jsr-publish.yml
vendored
1
.github/workflows/jsr-publish.yml
vendored
@ -22,4 +22,5 @@ jobs:
|
||||
run: |
|
||||
bun install
|
||||
bun run build
|
||||
bunx kksh verify --publish
|
||||
bunx jsr publish --allow-slow-types
|
||||
|
4
build.ts
4
build.ts
@ -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")
|
||||
|
2
jsr.json
2
jsr.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@kunkun/kunkun-ext-vscode",
|
||||
"version": "0.1.4",
|
||||
"version": "0.1.5",
|
||||
"license": "MIT",
|
||||
"exports": "./mod.ts",
|
||||
"publish": {
|
||||
|
@ -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": {
|
||||
|
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user