mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00

* feat: implement pixel dance animation component, page and command * feat: make entire dance page draggable * feat: add dance transition for ui-iframe extension loading
15 lines
641 B
TypeScript
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())
|