From 016197082512bd5723572b5cbfab34c5a88e672a Mon Sep 17 00:00:00 2001 From: Ender Date: Mon, 1 Apr 2024 10:57:47 +0200 Subject: [PATCH] reenable versioning in manifest zip URL --- gulpfile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.ts b/gulpfile.ts index d0a3258..b1be476 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -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", () => {