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

@module-federation/rspack

Package Overview
Dependencies
Maintainers
8
Versions
518
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@module-federation/rspack - npm Package Compare versions

Comparing version 0.0.0-next-20240419222037 to 0.0.0-next-20240422214156

8

dist/index.cjs.js

@@ -169,3 +169,3 @@ 'use strict';

new manifest.StatsPlugin(options, {
pluginVersion: "0.1.7",
pluginVersion: "0.1.8",
bundler: "rspack"

@@ -198,3 +198,3 @@ }).apply(compiler);

cacheGroup.chunks = function(chunk) {
if (chunk.name && chunk.name === name) {
if (chunk.name && (chunk.name === name || chunk.name === name + "_partial")) {
return false;

@@ -207,3 +207,3 @@ }

if (cacheGroup.chunks === "all") {
cacheGroup.chunks = new RegExp("^(?!.*".concat(name, ").*$"), "g");
cacheGroup.chunks = new RegExp("^(?!.*(".concat(name, "|").concat(name, "_partial)).*$"), "g");
break;

@@ -213,3 +213,3 @@ }

cacheGroup.chunks = function(chunk) {
if (chunk.name && chunk.name === name) {
if (chunk.name && (chunk.name === name || chunk.name === name + "_partial")) {
return false;

@@ -216,0 +216,0 @@ }

@@ -165,3 +165,3 @@ import { SEPARATOR } from '@module-federation/sdk';

new StatsPlugin(options, {
pluginVersion: "0.1.7",
pluginVersion: "0.1.8",
bundler: "rspack"

@@ -194,3 +194,3 @@ }).apply(compiler);

cacheGroup.chunks = function(chunk) {
if (chunk.name && chunk.name === name) {
if (chunk.name && (chunk.name === name || chunk.name === name + "_partial")) {
return false;

@@ -203,3 +203,3 @@ }

if (cacheGroup.chunks === "all") {
cacheGroup.chunks = new RegExp("^(?!.*".concat(name, ").*$"), "g");
cacheGroup.chunks = new RegExp("^(?!.*(".concat(name, "|").concat(name, "_partial)).*$"), "g");
break;

@@ -209,3 +209,3 @@ }

cacheGroup.chunks = function(chunk) {
if (chunk.name && chunk.name === name) {
if (chunk.name && (chunk.name === name || chunk.name === name + "_partial")) {
return false;

@@ -212,0 +212,0 @@ }

{
"name": "@module-federation/rspack",
"version": "0.1.7",
"version": "0.1.8",
"license": "MIT",

@@ -5,0 +5,0 @@ "keywords": [

{
"name": "@module-federation/rspack",
"version": "0.0.0-next-20240419222037",
"version": "0.0.0-next-20240422214156",
"license": "MIT",

@@ -22,7 +22,7 @@ "keywords": [

"dependencies": {
"@module-federation/sdk": "0.0.0-next-20240419222037",
"@module-federation/runtime-tools": "0.0.0-next-20240419222037",
"@module-federation/manifest": "0.0.0-next-20240419222037",
"@module-federation/managers": "0.0.0-next-20240419222037",
"@module-federation/dts-plugin": "0.0.0-next-20240419222037"
"@module-federation/sdk": "0.0.0-next-20240422214156",
"@module-federation/runtime-tools": "0.0.0-next-20240422214156",
"@module-federation/manifest": "0.0.0-next-20240422214156",
"@module-federation/managers": "0.0.0-next-20240422214156",
"@module-federation/dts-plugin": "0.0.0-next-20240422214156"
},

@@ -29,0 +29,0 @@ "devDependencies": {

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