Content-addressed version deploy system for Diffuse elements.diffuse.sh
at main 10 lines 300 B view raw
1import versionsJson from "../../../artifacts/versions.json" with { 2 type: "json", 3}; 4 5import type { Artifact } from "../../../common/types.d.ts"; 6 7const versions: Record<string, Artifact> = versionsJson as any; 8 9export const record = versions; 10export const list = Object.values(versions).reverse();