npm package diff

Package: @forge/bundler

Versions: 4.21.1-next.11 - 4.21.1-next.12

File: package/out/runtime.js

Index: package/out/runtime.js
===================================================================
--- package/out/runtime.js
+++ package/out/runtime.js
@@ -3,11 +3,15 @@
 exports.getNodeBundler = exports.SandboxBundler = void 0;
 const tslib_1 = require("tslib");
 const webpack_1 = tslib_1.__importDefault(require("webpack"));
 var RawSource = webpack_1.default.sources.RawSource;
+const cli_shared_1 = require("@forge/cli-shared");
+const path_1 = require("path");
 const common_1 = require("./config/common");
 const sandbox_1 = require("./config/sandbox");
 const webpack_2 = require("./webpack");
+const i18n_1 = require("@forge/i18n");
+const fs_1 = require("fs");
 class SandboxBundler extends webpack_2.WebpackBundler {
     constructor(logger) {
         super(logger);
     }
@@ -40,8 +44,14 @@
         }
     }
     await emit(NODE_RUNTIME_VERSION_FILE, JSON.stringify({ version: entrypointScript.version }, null, 2));
 }
+async function emitI18nFiles(i18nResourceBundle, emit) {
+    await Promise.all((0, cli_shared_1.listFilesInI18nResourceBundle)(i18nResourceBundle).map(async ([fileName, filePath]) => {
+        const fileContent = await fs_1.promises.readFile(filePath);
+        await emit((0, path_1.join)(i18n_1.I18N_BUNDLE_FOLDER_NAME, fileName), fileContent.toString());
+    }));
+}
 class NodeBundler extends webpack_2.WebpackBundler {
     wrapperProvider;
     statsigReader;
     constructor(logger, wrapperProvider, statsigReader) {
@@ -68,9 +78,15 @@
             }
         });
         webpackConfig.plugins.push({
             apply: (compiler) => {
-                compiler.hooks.make.tapPromise('AfterEmitPlugin', async (compilation) => await emitWrapperFiles(this.wrapperProvider, args.entryPoints, async (name, contents) => compilation.emitAsset(name, new RawSource(contents)), await this.statsigReader.packageSingleWrapper()));
+                compiler.hooks.make.tapPromise('AfterEmitPlugin', async (compilation) => {
+                    const emit = async (name, contents) => compilation.emitAsset(name, new RawSource(contents));
+                    await emitWrapperFiles(this.wrapperProvider, args.entryPoints, emit, await this.statsigReader.packageSingleWrapper());
+                    if (args.i18nResourceBundle) {
+                        await emitI18nFiles(args.i18nResourceBundle, emit);
+                    }
+                });
             }
         });
         return webpackConfig;
     }