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

* fix: try to fix desktop app publish * chore: update beta-build workflow for Ubuntu by removing redundant protobuf installation and adding libxdo-dev * fix: ensure data directory creation is conditional to avoid errors - Updated setup.ts to check for the existence of the "./src/data" directory before attempting to create it, preventing potential errors during execution. * fix: lint error
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
import assert from "assert"
|
|
import fs from "fs"
|
|
import { compressString, decompressString } from "@kksh/utils"
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* Download Dance JSON */
|
|
/* -------------------------------------------------------------------------- */
|
|
console.log("Downloading Dance Data...")
|
|
const rawData = await fetch("https://dance.kunkun.sh/api/data").then((res) => res.text())
|
|
if (!fs.existsSync("./src/data")) {
|
|
fs.mkdirSync("./src/data", { recursive: true })
|
|
}
|
|
function formatFileSize(size: number) {
|
|
return `${(size / 1024).toFixed(2)} KB`
|
|
}
|
|
Bun.write("./src/data/dance.json", rawData)
|
|
console.log(`Raw Data Size: ${formatFileSize(rawData.length)}`)
|
|
const compressedDance = compressString(rawData)
|
|
const decompressedDance = decompressString(compressedDance)
|
|
assert(decompressedDance === rawData)
|
|
const filePath = "./src/data/dance.bin"
|
|
|
|
Bun.write(
|
|
filePath, // has to be .txt in order to be imported as text
|
|
compressedDance
|
|
)
|
|
// get file size
|
|
const fileSize = Bun.file(filePath).size
|
|
console.log(`Dance Data Compressed File Size: ${formatFileSize(fileSize)}`)
|