use custom encoding function for pack file
/ release (push) Successful in 1m10s

This commit is contained in:
2026-02-25 00:12:40 -08:00
parent 8a86cade3f
commit 8312a75df0
+1 -1
View File
@@ -339,7 +339,7 @@ export class PackwizPack {
await writeFile(packIndexFileHandle, packIndexBytes)
})
await getFileHandle(this.packDirectoryHandle, this.packFileName, { "create": true })
.then(packFileHandle => writeFile(packFileHandle, stringifyTOML(this.packMetaData)))
.then(packFileHandle => writeFile(packFileHandle, encode(stringifyTOML(this.packMetaData))))
console.log("changes saved")
return this
}