Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@module-federation/runtime-tools

Package Overview
Dependencies
Maintainers
8
Versions
621
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@module-federation/runtime-tools - npm Package Compare versions

Comparing version 0.0.0-next-20241104084202 to 0.0.0-next-20241104091124

2

dist/package.json
{
"name": "@module-federation/runtime-tools",
"version": "0.6.11",
"version": "0.6.15",
"author": "zhanghang <hanric.zhang@gmail.com>",

@@ -5,0 +5,0 @@ "main": "./index.cjs.js",

{
"name": "@module-federation/runtime-tools",
"version": "0.0.0-next-20241104084202",
"version": "0.0.0-next-20241104091124",
"author": "zhanghang <hanric.zhang@gmail.com>",

@@ -44,5 +44,5 @@ "main": "./dist/index.cjs",

"dependencies": {
"@module-federation/runtime": "0.0.0-next-20241104084202",
"@module-federation/webpack-bundler-runtime": "0.0.0-next-20241104084202"
"@module-federation/runtime": "0.0.0-next-20241104091124",
"@module-federation/webpack-bundler-runtime": "0.0.0-next-20241104091124"
}
}

@@ -9,3 +9,16 @@ module.exports = (rollupConfig) => {

// Check if output is an array and add hoistTransitiveImports: false
if (Array.isArray(rollupConfig.output)) {
rollupConfig.output = rollupConfig.output.map((c) => ({
...c,
hoistTransitiveImports: false,
}));
} else {
rollupConfig.output = {
...rollupConfig.output,
hoistTransitiveImports: false,
};
}
return rollupConfig;
};

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc