Last active
August 4, 2023 01:01
-
-
Save ScriptedAlchemy/60d0c49ce049184f6ce3e86ca351fdca to your computer and use it in GitHub Desktop.
Remote PublicPath Modification
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const PLUGIN_NAME = "MutateRuntimePlugin"; | |
class MutateRuntimePlugin { | |
/** | |
* | |
* @param {FederationDashboardPluginOptions} options | |
*/ | |
constructor(options) {} | |
/** | |
* @param {Compiler} compiler | |
*/ | |
apply(compiler) { | |
const FederationPlugin = compiler.options.plugins.find((plugin) => { | |
return plugin.constructor.name === "ModuleFederationPlugin"; | |
}); | |
let FederationPluginOptions; | |
if (FederationPlugin) { | |
FederationPluginOptions = FederationPlugin._options; | |
} | |
compiler.hooks.make.tap("MutateRuntime", (compilation) => { | |
compilation.hooks.runtimeModule.tap("MutateRuntime", (module, chunk) => { | |
if ( | |
module.constructor.name === "PublicPathRuntimeModule" && | |
chunk.name === FederationPluginOptions.name | |
) { | |
const iffy = [ | |
"+ (function(){", | |
"try {", | |
"return 'somethinghere' + '/'", | |
"} catch(e) {", | |
"console.warn(e);", | |
'return ""', | |
"}", | |
"})();", | |
].join(""); | |
const generatedCode = module.getGeneratedCode(); | |
const splitGeneration = generatedCode.split("="); | |
module._cachedGeneratedCode = generatedCode.replace( | |
splitGeneration[1], | |
splitGeneration[1].split(";")[0] + iffy | |
); | |
console.log(module._cachedGeneratedCode); | |
return module; | |
} | |
}); | |
}); | |
compiler.hooks.done.tap("MutateRuntime", () => { | |
// debugger; | |
}); | |
} | |
} | |
module.exports = MutateRuntimePlugin; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment