npm package diff

Package: @forge/cli

Versions: 10.5.1-next.6-experimental-22c15de - 10.6.0-next.13

File: package/out/deploy/packager/packager.js

Index: package/out/deploy/packager/packager.js
===================================================================
--- package/out/deploy/packager/packager.js
+++ package/out/deploy/packager/packager.js
@@ -13,12 +13,12 @@
         this.runtimeBundler = runtimeBundler;
         this.nativeUiBundler = nativeUiBundler;
         this.logger = logger;
     }
-    async package(handlers, resources, packageConfig) {
+    async package(handlers, resources, packageConfig, i18nResourceBundle, i18nConfig) {
         this.logger.info(cli_shared_1.Text.deploy.taskPackage.title);
-        const runtimeBundle = await this.runtimeBundler.bundle(handlers, packageConfig);
-        const nativeUiBundle = await this.nativeUiBundler.bundle(resources);
+        const runtimeBundle = await this.runtimeBundler.bundle(handlers, i18nResourceBundle, packageConfig);
+        const nativeUiBundle = await this.nativeUiBundler.bundle(resources, i18nConfig);
         return {
             ...runtimeBundle,
             ...nativeUiBundle
         };