changed manifest for easier update #97

Merged
oskaloq merged 7 commits from Manifest-change into develop 2024-04-01 19:30:20 +02:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 0161970825 - Show all commits

View File

@ -375,7 +375,7 @@ async function packageBuild() {
if (!fs.existsSync(distPath)) fs.mkdirSync(distPath);
// Initialize the zip file
const zipName = `${manifest.file.name}.zip`;
const zipName = `${manifest.file.name}-v${manifest.file.version}.zip`;
const zipFile = fs.createWriteStream(zipName);
const zip = archiver("zip", { zlib: { level: 9 } });
zipFile.on("close", () => {