@forge/cli
13.0.013.1.0-next.4-experimental-9423de1
out/service/resource-packaging-service.js~
out/service/resource-packaging-service.jsModified+1−1
Index: package/out/service/resource-packaging-service.js
===================================================================
--- package/out/service/resource-packaging-service.js
+++ package/out/service/resource-packaging-service.js
@@ -145,9 +145,9 @@
await Promise.all(resourcesInformation.map(async (resource) => {
const { key, filePaths, directory } = resource;
try {
this.validateResourceContents(resource);
- const archiver = this.archiverFactory();
+ const archiver = await this.archiverFactory();
this.packageI18nResources(archiver, i18nResourceBundle);
const archivePath = await this.createResourceArchive(archiver, filePaths, directory);
archives[key] = {
zipPath: archivePath,