mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-11 17:29:44 +00:00
Feature: add helper api (#95)
* feat: add helper API for installation guides and update UI components - Implement helperAPI with methods to navigate to installation guides for Deno, FFmpeg, and Homebrew - Update extension and help page components to use new helper API - Modify command filtering in builtin commands - Adjust page navigation in help pages to use goHome instead of goBack - Remove unused imports and clean up components * chore: bump @kksh/api to 0.1.2 and update dependent packages
This commit is contained in:
parent
490368428e
commit
7b6c0934ab
@ -1,5 +1,12 @@
|
|||||||
# kksh
|
# kksh
|
||||||
|
|
||||||
|
## 0.1.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies
|
||||||
|
- @kksh/api@0.1.2
|
||||||
|
|
||||||
## 0.0.32
|
## 0.0.32
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "kksh",
|
"name": "kksh",
|
||||||
"module": "dist/cli.js",
|
"module": "dist/cli.js",
|
||||||
"version": "0.1.0",
|
"version": "0.1.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"bin": {
|
"bin": {
|
||||||
"kksh": "./dist/cli.js",
|
"kksh": "./dist/cli.js",
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# create-kunkun
|
# create-kunkun
|
||||||
|
|
||||||
|
## 0.1.45
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies
|
||||||
|
- @kksh/api@0.1.2
|
||||||
|
|
||||||
## 0.1.44
|
## 0.1.44
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "create-kunkun",
|
"name": "create-kunkun",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.1.44",
|
"version": "0.1.45",
|
||||||
"bin": {
|
"bin": {
|
||||||
"create-kunkun": "dist/index.mjs"
|
"create-kunkun": "dist/index.mjs"
|
||||||
},
|
},
|
||||||
|
@ -476,11 +476,10 @@ export const rawBuiltinCmds: BuiltinCmd[] = [
|
|||||||
].map((cmd) => ({ ...cmd, id: uuidv4() }))
|
].map((cmd) => ({ ...cmd, id: uuidv4() }))
|
||||||
|
|
||||||
export const builtinCmds = derived([appConfig, appState], ([$appConfig, $appState]) => {
|
export const builtinCmds = derived([appConfig, appState], ([$appConfig, $appState]) => {
|
||||||
return rawBuiltinCmds
|
return rawBuiltinCmds.filter((cmd) => {
|
||||||
.filter((cmd) => {
|
const passDeveloper = cmd.flags?.developer ? $appConfig.developerMode : true
|
||||||
const passDeveloper = cmd.flags?.developer ? $appConfig.developerMode : true
|
const passDev = cmd.flags?.dev ? dev : true
|
||||||
const passDev = cmd.flags?.dev ? dev : true
|
return passDeveloper && passDev
|
||||||
return passDeveloper && passDev
|
})
|
||||||
})
|
// .filter((cmd) => commandScore(cmd.name, $appState.searchTerm, cmd.keywords) > 0.5)
|
||||||
.filter((cmd) => commandScore(cmd.name, $appState.searchTerm, cmd.keywords) > 0.5)
|
|
||||||
})
|
})
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { i18n } from "@/i18n"
|
import { i18n } from "@/i18n"
|
||||||
import { appState } from "@/stores"
|
import { appState } from "@/stores"
|
||||||
import { winExtMap } from "@/stores/winExtMap"
|
import { winExtMap } from "@/stores/winExtMap"
|
||||||
|
import { helperAPI } from "@/utils/helper"
|
||||||
import { trimSlash } from "@/utils/url"
|
import { trimSlash } from "@/utils/url"
|
||||||
import { constructExtensionSupportDir } from "@kksh/api"
|
import { constructExtensionSupportDir } from "@kksh/api"
|
||||||
import { db, spawnExtensionFileServer } from "@kksh/api/commands"
|
import { db, spawnExtensionFileServer } from "@kksh/api/commands"
|
||||||
@ -93,6 +94,7 @@ export async function onHeadlessCmdSelect(
|
|||||||
const serverAPI2 = {
|
const serverAPI2 = {
|
||||||
...serverAPI,
|
...serverAPI,
|
||||||
iframeUi: undefined,
|
iframeUi: undefined,
|
||||||
|
helper: helperAPI,
|
||||||
workerUi: undefined,
|
workerUi: undefined,
|
||||||
db: new db.JarvisExtDB(extInfoInDB.extId),
|
db: new db.JarvisExtDB(extInfoInDB.extId),
|
||||||
kv: new db.KV(extInfoInDB.extId),
|
kv: new db.KV(extInfoInDB.extId),
|
||||||
|
@ -1,12 +1,9 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import InstallCodeBlock from "@/components/common/install-code-block.svelte"
|
import InstallCodeBlock from "@/components/common/install-code-block.svelte"
|
||||||
import Icon from "@iconify/svelte"
|
import Icon from "@iconify/svelte"
|
||||||
import { IconEnum } from "@kksh/api/models"
|
|
||||||
import { Button, Tabs } from "@kksh/svelte5"
|
|
||||||
import { TauriLink } from "@kksh/ui"
|
import { TauriLink } from "@kksh/ui"
|
||||||
import { platform } from "@tauri-apps/plugin-os"
|
import { platform } from "@tauri-apps/plugin-os"
|
||||||
import { onMount } from "svelte"
|
import { onMount } from "svelte"
|
||||||
import { toast } from "svelte-sonner"
|
|
||||||
import { whereIsCommand } from "tauri-plugin-shellx-api"
|
import { whereIsCommand } from "tauri-plugin-shellx-api"
|
||||||
|
|
||||||
let brewPath = $state("")
|
let brewPath = $state("")
|
||||||
@ -21,12 +18,7 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<h1 class="font-mono text-2xl font-bold">Install Homebrew</h1>
|
<h1 class="font-mono text-2xl font-bold">Install Homebrew</h1>
|
||||||
<TauriLink
|
<TauriLink href="/app/help/brew-install" class="flex items-center">
|
||||||
href="/app/help/brew-install"
|
|
||||||
icon={IconEnum.Iconify}
|
|
||||||
iconValue="devicon:homebrew"
|
|
||||||
class="flex items-center"
|
|
||||||
>
|
|
||||||
<span class="text-lg">Homebrew Website</span>
|
<span class="text-lg">Homebrew Website</span>
|
||||||
<Icon icon="devicon:homebrew" class="h-6 w-6" />
|
<Icon icon="devicon:homebrew" class="h-6 w-6" />
|
||||||
</TauriLink>
|
</TauriLink>
|
||||||
|
19
apps/desktop/src/lib/utils/helper.ts
Normal file
19
apps/desktop/src/lib/utils/helper.ts
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
/**
|
||||||
|
* This file contains APIs for helper
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { i18n } from "@/i18n"
|
||||||
|
import type { IHelper } from "@kksh/api"
|
||||||
|
import { goto } from "$app/navigation"
|
||||||
|
|
||||||
|
export const helperAPI: IHelper = {
|
||||||
|
guideInstallDeno: function (): Promise<void> {
|
||||||
|
return goto(i18n.resolveRoute("/app/help/deno-install"))
|
||||||
|
},
|
||||||
|
guideInstallFfmpeg: function (): Promise<void> {
|
||||||
|
return goto(i18n.resolveRoute("/app/help/ffmpeg-install"))
|
||||||
|
},
|
||||||
|
guideInstallHomebrew: function (): Promise<void> {
|
||||||
|
return goto(i18n.resolveRoute("/app/help/brew-install"))
|
||||||
|
}
|
||||||
|
}
|
@ -225,10 +225,10 @@
|
|||||||
onExtCmdSelect={commandLaunchers.onExtCmdSelect}
|
onExtCmdSelect={commandLaunchers.onExtCmdSelect}
|
||||||
/>
|
/>
|
||||||
{/if}
|
{/if}
|
||||||
<AppsCmds apps={$appsLoader} />
|
|
||||||
<QuickLinks quickLinks={$quickLinks} />
|
<QuickLinks quickLinks={$quickLinks} />
|
||||||
<BuiltinCmds builtinCmds={$builtinCmds} />
|
<BuiltinCmds builtinCmds={$builtinCmds} />
|
||||||
<SystemCmds systemCommands={$systemCommands} />
|
<SystemCmds systemCommands={$systemCommands} />
|
||||||
|
<AppsCmds apps={$appsLoader} />
|
||||||
|
|
||||||
<!-- <AppsCmds apps={$appsFiltered} /> -->
|
<!-- <AppsCmds apps={$appsFiltered} /> -->
|
||||||
<!-- {#if $quickLinksFiltered.length > 0}
|
<!-- {#if $quickLinksFiltered.length > 0}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
import DanceTransition from "@/components/dance/dance-transition.svelte"
|
import DanceTransition from "@/components/dance/dance-transition.svelte"
|
||||||
import { i18n } from "@/i18n"
|
import { i18n } from "@/i18n"
|
||||||
import { appConfig, winExtMap } from "@/stores"
|
import { appConfig, winExtMap } from "@/stores"
|
||||||
|
import { helperAPI } from "@/utils/helper"
|
||||||
import { goBackOnEscape } from "@/utils/key"
|
import { goBackOnEscape } from "@/utils/key"
|
||||||
import { goHome } from "@/utils/route"
|
import { goHome } from "@/utils/route"
|
||||||
import { positionToCssStyleString, positionToTailwindClasses } from "@/utils/style"
|
import { positionToCssStyleString, positionToTailwindClasses } from "@/utils/style"
|
||||||
@ -114,6 +115,7 @@
|
|||||||
...serverAPI.iframeUi,
|
...serverAPI.iframeUi,
|
||||||
...iframeUiAPI
|
...iframeUiAPI
|
||||||
} satisfies IUiCustomServer1 & IUiCustomServer2,
|
} satisfies IUiCustomServer1 & IUiCustomServer2,
|
||||||
|
helper: helperAPI,
|
||||||
db: new db.JarvisExtDB(extInfoInDB.extId),
|
db: new db.JarvisExtDB(extInfoInDB.extId),
|
||||||
kv: new db.KV(extInfoInDB.extId),
|
kv: new db.KV(extInfoInDB.extId),
|
||||||
app: {
|
app: {
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
import { appState } from "@/stores/appState.js"
|
import { appState } from "@/stores/appState.js"
|
||||||
import { keys } from "@/stores/keys"
|
import { keys } from "@/stores/keys"
|
||||||
import { winExtMap } from "@/stores/winExtMap.js"
|
import { winExtMap } from "@/stores/winExtMap.js"
|
||||||
|
import { helperAPI } from "@/utils/helper.js"
|
||||||
import { listenToFileDrop, listenToRefreshDevExt } from "@/utils/tauri-events.js"
|
import { listenToFileDrop, listenToRefreshDevExt } from "@/utils/tauri-events.js"
|
||||||
import { isInMainWindow } from "@/utils/window.js"
|
import { isInMainWindow } from "@/utils/window.js"
|
||||||
import { db } from "@kksh/api/commands"
|
import { db } from "@kksh/api/commands"
|
||||||
@ -219,6 +220,7 @@
|
|||||||
...serverAPI,
|
...serverAPI,
|
||||||
iframeUi: undefined,
|
iframeUi: undefined,
|
||||||
workerUi: extUiAPI,
|
workerUi: extUiAPI,
|
||||||
|
helper: helperAPI,
|
||||||
db: new db.JarvisExtDB(extInfoInDB.extId),
|
db: new db.JarvisExtDB(extInfoInDB.extId),
|
||||||
kv: new db.KV(extInfoInDB.extId),
|
kv: new db.KV(extInfoInDB.extId),
|
||||||
app: {
|
app: {
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import BrewInstall from "@/components/standalone/help/brew-install.svelte"
|
import BrewInstall from "@/components/standalone/help/brew-install.svelte"
|
||||||
import { goBackOnEscape } from "@/utils/key"
|
import { goBackOnEscape, goHomeOnEscape } from "@/utils/key"
|
||||||
import { goBack } from "@/utils/route"
|
import { goBack, goHome } from "@/utils/route"
|
||||||
import { Button } from "@kksh/svelte5"
|
import { Button } from "@kksh/svelte5"
|
||||||
import ArrowLeft from "svelte-radix/ArrowLeft.svelte"
|
import ArrowLeft from "svelte-radix/ArrowLeft.svelte"
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:window on:keydown={goBackOnEscape} />
|
<svelte:window on:keydown={goHomeOnEscape} />
|
||||||
<Button variant="outline" size="icon" onclick={goBack} class="absolute left-2 top-2">
|
<Button variant="outline" size="icon" onclick={goHome} class="absolute left-2 top-2">
|
||||||
<ArrowLeft class="size-4" />
|
<ArrowLeft class="size-4" />
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import DenoInstall from "@/components/standalone/help/deno-install.svelte"
|
import DenoInstall from "@/components/standalone/help/deno-install.svelte"
|
||||||
import { goBackOnEscape } from "@/utils/key"
|
import { goHomeOnEscape } from "@/utils/key"
|
||||||
import { goBack } from "@/utils/route"
|
import { goHome } from "@/utils/route"
|
||||||
import { Button } from "@kksh/svelte5"
|
import { Button } from "@kksh/svelte5"
|
||||||
import ArrowLeft from "svelte-radix/ArrowLeft.svelte"
|
import ArrowLeft from "svelte-radix/ArrowLeft.svelte"
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:window on:keydown={goBackOnEscape} />
|
<svelte:window on:keydown={goHomeOnEscape} />
|
||||||
<Button variant="outline" size="icon" onclick={goBack} class="absolute left-2 top-2">
|
<Button variant="outline" size="icon" onclick={goHome} class="absolute left-2 top-2">
|
||||||
<ArrowLeft class="size-4" />
|
<ArrowLeft class="size-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<main class="container pt-12">
|
<main class="container pt-12">
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import FFmpegInstall from "@/components/standalone/help/ffmpeg-install.svelte"
|
import FFmpegInstall from "@/components/standalone/help/ffmpeg-install.svelte"
|
||||||
import { goBackOnEscape } from "@/utils/key"
|
import { goHomeOnEscape } from "@/utils/key"
|
||||||
import { goBack } from "@/utils/route"
|
import { goHome } from "@/utils/route"
|
||||||
import { Button } from "@kksh/svelte5"
|
import { Button } from "@kksh/svelte5"
|
||||||
import ArrowLeft from "svelte-radix/ArrowLeft.svelte"
|
import ArrowLeft from "svelte-radix/ArrowLeft.svelte"
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:window on:keydown={goBackOnEscape} />
|
<svelte:window on:keydown={goHomeOnEscape} />
|
||||||
<Button variant="outline" size="icon" onclick={goBack} class="absolute left-2 top-2">
|
<Button variant="outline" size="icon" onclick={goHome} class="absolute left-2 top-2">
|
||||||
<ArrowLeft class="size-4" />
|
<ArrowLeft class="size-4" />
|
||||||
</Button>
|
</Button>
|
||||||
<main class="container pt-12">
|
<main class="container pt-12">
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
# @kksh/api
|
# @kksh/api
|
||||||
|
|
||||||
|
## 0.1.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Add helper API
|
||||||
|
|
||||||
## 0.1.1
|
## 0.1.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@kksh/api",
|
"name": "@kksh/api",
|
||||||
"version": "0.1.1",
|
"version": "0.1.2",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -300,3 +300,9 @@ export interface ISecurity {
|
|||||||
checkScreenCapturePermission: () => Promise<boolean>
|
checkScreenCapturePermission: () => Promise<boolean>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface IHelper {
|
||||||
|
guideInstallDeno: () => Promise<void>
|
||||||
|
guideInstallFfmpeg: () => Promise<void>
|
||||||
|
guideInstallHomebrew: () => Promise<void>
|
||||||
|
}
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
// import { proxy as comlinkProxy, type Remote } from "@huakunshen/comlink"
|
|
||||||
import type { GeneralToastParams, IToast } from "./client"
|
import type { GeneralToastParams, IToast } from "./client"
|
||||||
|
|
||||||
export function constructToastAPI(api: IToast) {
|
export function constructToastAPI(api: IToast) {
|
||||||
|
@ -20,6 +20,7 @@ import type {
|
|||||||
IDb,
|
IDb,
|
||||||
IEvent,
|
IEvent,
|
||||||
IFs,
|
IFs,
|
||||||
|
IHelper,
|
||||||
IKV,
|
IKV,
|
||||||
IOpen,
|
IOpen,
|
||||||
IPath,
|
IPath,
|
||||||
@ -79,6 +80,7 @@ type API = {
|
|||||||
shell: IShellServer // inherit from tauri-api-adapter
|
shell: IShellServer // inherit from tauri-api-adapter
|
||||||
updownload: IUpdownload // inherit from tauri-api-adapter
|
updownload: IUpdownload // inherit from tauri-api-adapter
|
||||||
sysInfo: ISystemInfo // inherit from tauri-api-adapter
|
sysInfo: ISystemInfo // inherit from tauri-api-adapter
|
||||||
|
helper: IHelper // for kunkun
|
||||||
network: INetwork // inherit from tauri-api-adapter
|
network: INetwork // inherit from tauri-api-adapter
|
||||||
security: ISecurity // for kunkun
|
security: ISecurity // for kunkun
|
||||||
utils: IUtils // for kunkun
|
utils: IUtils // for kunkun
|
||||||
|
@ -25,6 +25,7 @@ import type {
|
|||||||
IDb,
|
IDb,
|
||||||
IEvent,
|
IEvent,
|
||||||
IFs,
|
IFs,
|
||||||
|
IHelper,
|
||||||
IKV,
|
IKV,
|
||||||
IOpen,
|
IOpen,
|
||||||
IPath,
|
IPath,
|
||||||
@ -71,6 +72,7 @@ type API = {
|
|||||||
iframeUi: IUiCustom // for kunkun
|
iframeUi: IUiCustom // for kunkun
|
||||||
utils: IUtils // for kunkun
|
utils: IUtils // for kunkun
|
||||||
security: ISecurity // for kunkun
|
security: ISecurity // for kunkun
|
||||||
|
helper: IHelper // for kunkun
|
||||||
app: IApp
|
app: IApp
|
||||||
}
|
}
|
||||||
// export const api = wrap(windowEndpoint(globalThis.parent)) as unknown as API
|
// export const api = wrap(windowEndpoint(globalThis.parent)) as unknown as API
|
||||||
|
@ -30,6 +30,7 @@ import type {
|
|||||||
IDb,
|
IDb,
|
||||||
IEvent,
|
IEvent,
|
||||||
IFs,
|
IFs,
|
||||||
|
IHelper,
|
||||||
IKV,
|
IKV,
|
||||||
IOpen,
|
IOpen,
|
||||||
IPath,
|
IPath,
|
||||||
@ -83,6 +84,7 @@ type API = {
|
|||||||
sysInfo: ISystemInfo // inherit from tauri-api-adapter
|
sysInfo: ISystemInfo // inherit from tauri-api-adapter
|
||||||
network: INetwork // inherit from tauri-api-adapter
|
network: INetwork // inherit from tauri-api-adapter
|
||||||
workerUi: IUiTemplate // for kunkun
|
workerUi: IUiTemplate // for kunkun
|
||||||
|
helper: IHelper
|
||||||
security: ISecurity // for kunkun
|
security: ISecurity // for kunkun
|
||||||
utils: IUtils // for kunkun
|
utils: IUtils // for kunkun
|
||||||
app: IApp
|
app: IApp
|
||||||
@ -121,6 +123,7 @@ export const {
|
|||||||
utils,
|
utils,
|
||||||
app,
|
app,
|
||||||
security,
|
security,
|
||||||
|
helper,
|
||||||
workerUi: ui
|
workerUi: ui
|
||||||
} = api
|
} = api
|
||||||
export { Child, RPCChannel, Command, DenoCommand } from "../../api/shell"
|
export { Child, RPCChannel, Command, DenoCommand } from "../../api/shell"
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# demo-template-extension
|
# demo-template-extension
|
||||||
|
|
||||||
|
## 0.0.9
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies
|
||||||
|
- @kksh/api@0.1.2
|
||||||
|
|
||||||
## 0.0.8
|
## 0.0.8
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "../../schema/manifest-json-schema.json",
|
"$schema": "../../schema/manifest-json-schema.json",
|
||||||
"name": "demo-template-extension",
|
"name": "demo-template-extension",
|
||||||
"version": "0.0.8",
|
"version": "0.0.9",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
|
@ -7,6 +7,7 @@ import {
|
|||||||
expose,
|
expose,
|
||||||
Form,
|
Form,
|
||||||
fs,
|
fs,
|
||||||
|
helper,
|
||||||
Icon,
|
Icon,
|
||||||
IconEnum,
|
IconEnum,
|
||||||
kv,
|
kv,
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# template-ext-sveltekit
|
# template-ext-sveltekit
|
||||||
|
|
||||||
|
## 0.0.9
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies
|
||||||
|
- @kksh/api@0.1.2
|
||||||
|
|
||||||
## 0.0.8
|
## 0.0.8
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.kunkun.sh",
|
"$schema": "https://schema.kunkun.sh",
|
||||||
"name": "ext-sveltekit-exp",
|
"name": "ext-sveltekit-exp",
|
||||||
"version": "0.0.8",
|
"version": "0.0.9",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
"name": "TODO: Change Display Name",
|
"name": "TODO: Change Display Name",
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# template-ext-worker
|
# template-ext-worker
|
||||||
|
|
||||||
|
## 0.0.8
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies
|
||||||
|
- @kksh/api@0.1.2
|
||||||
|
|
||||||
## 0.0.7
|
## 0.0.7
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
||||||
"name": "template-ext-headless",
|
"name": "template-ext-headless",
|
||||||
"version": "0.0.7",
|
"version": "0.0.8",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# template-ext-next
|
# template-ext-next
|
||||||
|
|
||||||
|
## 0.1.7
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies
|
||||||
|
- @kksh/api@0.1.2
|
||||||
|
|
||||||
## 0.1.6
|
## 0.1.6
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
||||||
"name": "template-ext-next",
|
"name": "template-ext-next",
|
||||||
"version": "0.1.6",
|
"version": "0.1.7",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
"name": "TODO: Change Display Name",
|
"name": "TODO: Change Display Name",
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# template-ext-nuxt
|
# template-ext-nuxt
|
||||||
|
|
||||||
|
## 0.0.9
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies
|
||||||
|
- @kksh/api@0.1.2
|
||||||
|
|
||||||
## 0.0.8
|
## 0.0.8
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
||||||
"name": "template-ext-nuxt",
|
"name": "template-ext-nuxt",
|
||||||
"version": "0.0.8",
|
"version": "0.0.9",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# template-ext-react
|
# template-ext-react
|
||||||
|
|
||||||
|
## 0.0.8
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies
|
||||||
|
- @kksh/api@0.1.2
|
||||||
|
|
||||||
## 0.0.7
|
## 0.0.7
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
||||||
"name": "template-ext-react",
|
"name": "template-ext-react",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "0.0.7",
|
"version": "0.0.8",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
"name": "TODO: Change Display Name",
|
"name": "TODO: Change Display Name",
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# template-ext-svelte
|
# template-ext-svelte
|
||||||
|
|
||||||
|
## 0.0.8
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies
|
||||||
|
- @kksh/api@0.1.2
|
||||||
|
|
||||||
## 0.0.7
|
## 0.0.7
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
||||||
"name": "template-ext-svelte",
|
"name": "template-ext-svelte",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "0.0.7",
|
"version": "0.0.8",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
"name": "TODO: Change Display Name",
|
"name": "TODO: Change Display Name",
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# template-ext-sveltekit
|
# template-ext-sveltekit
|
||||||
|
|
||||||
|
## 0.0.9
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies
|
||||||
|
- @kksh/api@0.1.2
|
||||||
|
|
||||||
## 0.0.8
|
## 0.0.8
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
||||||
"name": "template-ext-sveltekit",
|
"name": "template-ext-sveltekit",
|
||||||
"version": "0.0.8",
|
"version": "0.0.9",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
"name": "TODO: Change Display Name",
|
"name": "TODO: Change Display Name",
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# template-ext-vue
|
# template-ext-vue
|
||||||
|
|
||||||
|
## 0.0.6
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies
|
||||||
|
- @kksh/api@0.1.2
|
||||||
|
|
||||||
## 0.0.5
|
## 0.0.5
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "template-ext-vue",
|
"name": "template-ext-vue",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "0.0.5",
|
"version": "0.0.6",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# template-ext-worker
|
# template-ext-worker
|
||||||
|
|
||||||
|
## 0.0.8
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies
|
||||||
|
- @kksh/api@0.1.2
|
||||||
|
|
||||||
## 0.0.7
|
## 0.0.7
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
"$schema": "./node_modules/@kksh/api/dist/schema.json",
|
||||||
"name": "template-ext-worker",
|
"name": "template-ext-worker",
|
||||||
"version": "0.0.7",
|
"version": "0.0.8",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
|
2
vendors/tauri-plugin-user-input
vendored
2
vendors/tauri-plugin-user-input
vendored
@ -1 +1 @@
|
|||||||
Subproject commit 890edc0216f5d7d36de7dcdd1809b7551c342e06
|
Subproject commit f62f393efad652dec9ec9c4c065aba637538a3ac
|
Loading…
x
Reference in New Issue
Block a user