@module-federation/bridge-react-webpack-plugin 0.0.0-next-20240718035404 → 0.0.0-next-20240718061842

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,10 +1,11 @@
1
1
  # @module-federation/bridge-react-webpack-plugin
2
2
 
3
- ## 0.0.0-next-20240718035404
3
+ ## 0.0.0-next-20240718061842
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - @module-federation/sdk@0.0.0-next-20240718035404
7
+ - Updated dependencies [00c0f5a]
8
+ - @module-federation/sdk@0.0.0-next-20240718061842
8
9
 
9
10
  ## 0.2.6
10
11
 
package/dist/index.cjs.js CHANGED
@@ -40,7 +40,6 @@ class ReactBridgeAliasChangerPlugin {
40
40
  const originalAlias = originalResolve.alias || {};
41
41
  const updatedAlias = { ...originalAlias, [this.alias]: targetFilePath };
42
42
  compiler.options.resolve = {
43
- // allow this config to be override
44
43
  ...originalResolve,
45
44
  alias: updatedAlias
46
45
  };
package/dist/index.es.js CHANGED
@@ -39,7 +39,6 @@ class ReactBridgeAliasChangerPlugin {
39
39
  const originalAlias = originalResolve.alias || {};
40
40
  const updatedAlias = { ...originalAlias, [this.alias]: targetFilePath };
41
41
  compiler.options.resolve = {
42
- // allow this config to be override
43
42
  ...originalResolve,
44
43
  alias: updatedAlias
45
44
  };
package/package.json CHANGED
@@ -1,23 +1,23 @@
1
1
  {
2
2
  "name": "@module-federation/bridge-react-webpack-plugin",
3
- "version": "0.0.0-next-20240718035404",
3
+ "version": "0.0.0-next-20240718061842",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
7
  "author": "zhouxiao <codingzx@gmail.com>",
8
8
  "main": "./dist/index.cjs.js",
9
- "module": "./dist/index.es.js",
9
+ "module": "./dist/index.esm.js",
10
10
  "types": "./dist/index.cjs.d.ts",
11
11
  "exports": {
12
12
  ".": {
13
13
  "types": "./dist/index.cjs.d.ts",
14
- "import": "./dist/index.es.js",
14
+ "import": "./dist/index.esm.js",
15
15
  "require": "./dist/index.cjs.js"
16
16
  },
17
17
  "./*": "./*"
18
18
  },
19
19
  "dependencies": {
20
- "@module-federation/sdk": "0.0.0-next-20240718035404"
20
+ "@module-federation/sdk": "0.0.0-next-20240718061842"
21
21
  },
22
22
  "devDependencies": {
23
23
  "typescript": "^5.2.2",
package/src/index.ts CHANGED
@@ -44,7 +44,6 @@ class ReactBridgeAliasChangerPlugin {
44
44
 
45
45
  // Update the webpack configuration
46
46
  compiler.options.resolve = {
47
- // allow this config to be override
48
47
  ...originalResolve,
49
48
  alias: updatedAlias,
50
49
  };