@module-federation/bridge-react-webpack-plugin
Advanced tools
Comparing version 0.0.0-next-20240814085621 to 0.0.0-next-20240814104132
# @module-federation/bridge-react-webpack-plugin | ||
## 0.0.0-next-20240814085621 | ||
## 0.0.0-next-20240814104132 | ||
### Patch Changes | ||
- @module-federation/sdk@0.0.0-next-20240814085621 | ||
- 67fa05b: feat(@module-federation/bridge): enhance Bridge capabilities and fix some issues | ||
- @module-federation/sdk@0.0.0-next-20240814104132 | ||
## 0.4.0 | ||
### Patch Changes | ||
- Updated dependencies [a6e2bed] | ||
- Updated dependencies [a6e2bed] | ||
- @module-federation/sdk@0.4.0 | ||
## 0.3.5 | ||
@@ -10,0 +19,0 @@ |
@@ -41,3 +41,7 @@ "use strict"; | ||
const originalAlias = originalResolve.alias || {}; | ||
const updatedAlias = { ...originalAlias, [this.alias]: targetFilePath }; | ||
const updatedAlias = { | ||
// allow `alias` can be override | ||
[this.alias]: targetFilePath, | ||
...originalAlias | ||
}; | ||
compiler.options.resolve = { | ||
@@ -44,0 +48,0 @@ ...originalResolve, |
@@ -40,3 +40,7 @@ var __defProp = Object.defineProperty; | ||
const originalAlias = originalResolve.alias || {}; | ||
const updatedAlias = { ...originalAlias, [this.alias]: targetFilePath }; | ||
const updatedAlias = { | ||
// allow `alias` can be override | ||
[this.alias]: targetFilePath, | ||
...originalAlias | ||
}; | ||
compiler.options.resolve = { | ||
@@ -43,0 +47,0 @@ ...originalResolve, |
{ | ||
"name": "@module-federation/bridge-react-webpack-plugin", | ||
"version": "0.0.0-next-20240814085621", | ||
"version": "0.0.0-next-20240814104132", | ||
"publishConfig": { | ||
@@ -9,3 +9,3 @@ "access": "public" | ||
"main": "./dist/index.cjs.js", | ||
"module": "./dist/index.esm.js", | ||
"module": "./dist/index.es.js", | ||
"types": "./dist/index.cjs.d.ts", | ||
@@ -15,3 +15,3 @@ "exports": { | ||
"types": "./dist/index.cjs.d.ts", | ||
"import": "./dist/index.esm.js", | ||
"import": "./dist/index.es.js", | ||
"require": "./dist/index.cjs.js" | ||
@@ -22,3 +22,3 @@ }, | ||
"dependencies": { | ||
"@module-federation/sdk": "0.0.0-next-20240814085621" | ||
"@module-federation/sdk": "0.0.0-next-20240814104132" | ||
}, | ||
@@ -25,0 +25,0 @@ "devDependencies": { |
@@ -43,3 +43,7 @@ import fs from 'node:fs'; | ||
// Update alias | ||
const updatedAlias = { ...originalAlias, [this.alias]: targetFilePath }; | ||
const updatedAlias = { | ||
// allow `alias` can be override | ||
[this.alias]: targetFilePath, | ||
...originalAlias, | ||
}; | ||
@@ -46,0 +50,0 @@ // Update the webpack configuration |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15011
264
+ Added@module-federation/sdk@0.0.0-next-20240814104132(transitive)
- Removed@module-federation/sdk@0.0.0-next-20240814085621(transitive)