Huakun Shen ad83e89e52
feat: implement pixel dance animation component, page and command (#8)
* feat: implement pixel dance animation component, page and command

* feat: make entire dance page draggable

* feat: add dance transition for ui-iframe extension loading
2024-11-03 19:34:07 -05:00

15 lines
641 B
TypeScript

import fs from "fs"
import path from "path"
import { PACKAGES_PATHS } from "@/path"
import { $ } from "bun"
// Initialize .env files
await $`bun ${path.join(PACKAGES_PATHS.CI, "scripts", "init-env.ts")}`
/* -------------------------------------------------------------------------- */
/* Download Dance JSON */
/* -------------------------------------------------------------------------- */
// const res = await fetch("https://dance.kunkun.sh/api/data")
// const danceFilePath = path.join(PACKAGES_PATHS.DESKTOP, "./src/lib/dance.json")
// Bun.write(danceFilePath, await res.text())