mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00

* feat: add required license field to manifest * chore: add license MIT to all templates * feat: add license check to jsr and npm validation * fix: supabase export split every item into its own subexport for better debugability * fix: supabase imports * feat: hide app when escape is pressed * fix: update package version in api test from 0.0.6 to 0.0.20 * fix: update test for kunkun extension with new version and commit details * fix: update kunkun extension test to use version 0.0.4 * fix: update kunkun extension test to reflect new version 0.0.20 and updated commit details * feat: display downloads in extension details * feat: add downloads display to store
29 lines
935 B
TypeScript
29 lines
935 B
TypeScript
import { ExtPackageJson } from "@kksh/api/models"
|
|
import { type Database } from "@kksh/supabase/types"
|
|
import { createClient } from "@supabase/supabase-js"
|
|
import { parse, string } from "valibot"
|
|
import * as v from "valibot"
|
|
import { getJsonSchema } from "../src"
|
|
|
|
const supabase = createClient<Database>(
|
|
parse(string(), process.env.SUPABASE_URL),
|
|
parse(string(), process.env.SUPABASE_SERVICE_ROLE_KEY)
|
|
)
|
|
|
|
const schemaStr = getJsonSchema(ExtPackageJson)
|
|
|
|
const { data, error } = await supabase.storage.from("extensions").upload("schema.json", schemaStr, {
|
|
cacheControl: "3600",
|
|
upsert: true // overwrite existing file with same name
|
|
})
|
|
await supabase.storage.from("extensions").upload("nightly.schema.json", schemaStr, {
|
|
cacheControl: "3600",
|
|
upsert: true // overwrite existing file with same name
|
|
})
|
|
console.log("data", data)
|
|
if (error) {
|
|
console.error("Failed to upload schema.json")
|
|
console.error(error)
|
|
process.exit(1)
|
|
}
|