Skip to content

Commit 67807b2

Browse files
committed
format
1 parent e413121 commit 67807b2

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

apps/desktop/dev.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { getExtensionsLatestPublishByIdentifier } from "@kksh/sdk"
21
import { IconType } from "@kksh/api/models"
2+
import { getExtensionsLatestPublishByIdentifier } from "@kksh/sdk"
33

44
const latestPublish = await getExtensionsLatestPublishByIdentifier({
55
path: {
@@ -10,4 +10,4 @@ console.log(latestPublish)
1010
// latestPublish
1111

1212
// console.log(typeof IconEnum.Iconify)
13-
console.log(IconType.options)
13+
console.log(IconType.options)

apps/desktop/src/routes/app/extension/store/[identifier]/helper.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
import type { ExtPublishMetadata } from "@kunkunapi/src/models"
22

3-
export async function getInstallExtras(
4-
extMetadata?: {
5-
sourceType?: string
6-
source?: string
7-
}
8-
): Promise<{ overwritePackageJson?: string }> {
3+
export async function getInstallExtras(extMetadata?: {
4+
sourceType?: string
5+
source?: string
6+
}): Promise<{ overwritePackageJson?: string }> {
97
const extras: { overwritePackageJson?: string } = {}
108
if (extMetadata?.sourceType) {
119
if (extMetadata?.sourceType === "jsr") {

0 commit comments

Comments
 (0)