mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
fix: handle optional metadata in getInstallExtras for improved extension installation
This commit is contained in:
parent
7e811440b8
commit
f78403eeb6
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@kksh/desktop",
|
||||
"version": "0.1.14",
|
||||
"version": "0.1.15",
|
||||
"description": "",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -2,13 +2,13 @@ import type { Tables } from "@kksh/api/supabase/types"
|
||||
import type { ExtPublishMetadata } from "@kksh/supabase/models"
|
||||
|
||||
export async function getInstallExtras(
|
||||
ext: Tables<"ext_publish"> & { metadata: ExtPublishMetadata }
|
||||
ext: Tables<"ext_publish"> & { metadata?: ExtPublishMetadata }
|
||||
): Promise<{ overwritePackageJson?: string }> {
|
||||
const extras: { overwritePackageJson?: string } = {}
|
||||
if (ext.metadata.sourceType) {
|
||||
if (ext.metadata.sourceType === "jsr") {
|
||||
if (ext.metadata.source) {
|
||||
try {
|
||||
if (ext.metadata?.sourceType) {
|
||||
if (ext.metadata?.sourceType === "jsr") {
|
||||
if (ext.metadata?.source) {
|
||||
try {
|
||||
const res = await fetch(`${ext.metadata.source}/package.json`)
|
||||
const pkgJsonContent = await res.text()
|
||||
extras.overwritePackageJson = pkgJsonContent
|
||||
|
Loading…
x
Reference in New Issue
Block a user