chore(deps-dev): bump archiver from 7.0.1 to 8.0.0 (#224)

* chore(deps-dev): bump archiver from 7.0.1 to 8.0.0

Bumps [archiver](https://github.com/archiverjs/node-archiver) from 7.0.1 to 8.0.0.
- [Release notes](https://github.com/archiverjs/node-archiver/releases)
- [Changelog](https://github.com/archiverjs/node-archiver/blob/master/CHANGELOG.md)
- [Commits](https://github.com/archiverjs/node-archiver/compare/7.0.1...8.0.0)

---
updated-dependencies:
- dependency-name: archiver
  dependency-version: 8.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix archiver 8 ZIP creation

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Paul Bakaus <paul.bakaus@gmail.com>
This commit is contained in:
dependabot[bot]
2026-06-08 13:47:51 -07:00
committed by GitHub
co-authored by dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Paul Bakaus
parent c719501cbd
commit 642adb5e84
3 changed files with 13 additions and 61 deletions
+2 -2
View File
@@ -8,7 +8,7 @@
import path from 'path';
import { createWriteStream, existsSync, statSync } from 'fs';
import archiver from 'archiver';
import { ZipArchive } from 'archiver';
/**
* Create ZIP file for a provider directory
@@ -28,7 +28,7 @@ export async function createProviderZip(providerDir, distDir, providerName) {
try {
await new Promise((resolve, reject) => {
const output = createWriteStream(zipPath);
const archive = archiver('zip', { zlib: { level: 9 } });
const archive = new ZipArchive({ zlib: { level: 9 } });
output.on('close', resolve);
archive.on('error', reject);