mirror of
https://github.com/kunkunsh/kunkun-ext-vscode.git
synced 2025-04-03 18:16:42 +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: |
|
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
|
||||||
|
4
build.ts
4
build.ts
@ -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")
|
||||||
|
2
jsr.json
2
jsr.json
@ -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": {
|
||||||
|
@ -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": {
|
||||||
|
@ -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()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user