reenable versioning in manifest zip URL
This commit is contained in:
parent
1b503d8634
commit
0161970825
|
|
@ -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", () => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue