@module-federation/bridge-react-webpack-plugin 0.0.0-feat-support-bridge-react-router-v7-20251015102312

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/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@module-federation/bridge-react-webpack-plugin",
3
+ "version": "0.0.0-feat-support-bridge-react-router-v7-20251015102312",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "author": "zhouxiao <codingzx@gmail.com>",
8
+ "license": "MIT",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/module-federation/core.git",
12
+ "directory": "packages/bridge/bridge-react-webpack-plugin"
13
+ },
14
+ "main": "./dist/index.cjs.js",
15
+ "module": "./dist/index.es.js",
16
+ "types": "./dist/index.cjs.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/index.cjs.d.ts",
20
+ "import": "./dist/index.es.js",
21
+ "require": "./dist/index.cjs.js"
22
+ },
23
+ "./*": "./*"
24
+ },
25
+ "dependencies": {
26
+ "semver": "7.6.3",
27
+ "@types/semver": "7.5.8",
28
+ "@module-federation/sdk": "0.0.0-feat-support-bridge-react-router-v7-20251015102312"
29
+ },
30
+ "devDependencies": {
31
+ "typescript": "^5.2.2",
32
+ "vite": "^5.4.20",
33
+ "vite-plugin-dts": "^4.3.0"
34
+ },
35
+ "scripts": {
36
+ "dev": "vite",
37
+ "build": "vite build",
38
+ "preview": "vite preview"
39
+ }
40
+ }
package/project.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "bridge-react-webpack-plugin",
3
+ "$schema": "../../node_modules/nx/schemas/project-schema.json",
4
+ "sourceRoot": "packages/bridge/bridge-react-webpack-plugin/src",
5
+ "projectType": "library",
6
+ "tags": ["type:pkg"],
7
+ "targets": {
8
+ "build": {
9
+ "executor": "nx:run-commands",
10
+ "options": {
11
+ "commands": [
12
+ "npm run build --prefix packages/bridge/bridge-react-webpack-plugin"
13
+ ]
14
+ }
15
+ },
16
+ "test": {
17
+ "executor": "nx:run-commands",
18
+ "options": {
19
+ "parallel": false,
20
+ "commands": [
21
+ {
22
+ "command": "vitest run -c packages/bridge/bridge-react-webpack-plugin/vitest.config.ts",
23
+ "forwardAllArgs": false
24
+ }
25
+ ]
26
+ }
27
+ }
28
+ }
29
+ }
package/src/index.ts ADDED
@@ -0,0 +1,62 @@
1
+ import fs from 'node:fs';
2
+ import path from 'node:path';
3
+ import type { moduleFederationPlugin } from '@module-federation/sdk';
4
+ import { getBridgeRouterAlias } from './utis';
5
+
6
+ class ReactBridgeAliasChangerPlugin {
7
+ alias: string;
8
+ targetFile: string;
9
+ moduleFederationOptions: moduleFederationPlugin.ModuleFederationPluginOptions;
10
+ constructor(info: {
11
+ moduleFederationOptions: moduleFederationPlugin.ModuleFederationPluginOptions;
12
+ }) {
13
+ this.moduleFederationOptions = info.moduleFederationOptions;
14
+ this.alias = 'react-router-dom$';
15
+ this.targetFile = '@module-federation/bridge-react/dist/router.es.js';
16
+
17
+ if (this.moduleFederationOptions.shared) {
18
+ if (Array.isArray(this.moduleFederationOptions.shared)) {
19
+ if (this.moduleFederationOptions.shared.includes('react-router-dom')) {
20
+ throw Error(
21
+ 'React-router-dom cannot be set to shared after react bridge is used',
22
+ );
23
+ }
24
+ } else {
25
+ if (this.moduleFederationOptions.shared['react-router-dom']) {
26
+ throw Error(
27
+ 'React-router-dom cannot be set to shared after react bridge is used',
28
+ );
29
+ }
30
+ }
31
+ }
32
+ }
33
+
34
+ apply(compiler: any) {
35
+ compiler.hooks.afterEnvironment.tap('ReactBridgeAliasPlugin', () => {
36
+ // Gets the path to the node_modules directory
37
+ const nodeModulesPath = path.resolve(compiler.context, 'node_modules');
38
+ const targetFilePath = path.join(nodeModulesPath, this.targetFile);
39
+
40
+ if (fs.existsSync(targetFilePath)) {
41
+ const originalResolve = compiler.options.resolve || {};
42
+ const originalAlias = originalResolve.alias || {};
43
+
44
+ // Update alias
45
+ const updatedAlias = {
46
+ // allow `alias` can be override
47
+ // [this.alias]: targetFilePath,
48
+ ...getBridgeRouterAlias(originalAlias['react-router-dom']),
49
+ ...originalAlias,
50
+ };
51
+
52
+ // Update the webpack configuration
53
+ compiler.options.resolve = {
54
+ ...originalResolve,
55
+ alias: updatedAlias,
56
+ };
57
+ }
58
+ });
59
+ }
60
+ }
61
+
62
+ export default ReactBridgeAliasChangerPlugin;
package/src/utis.ts ADDED
@@ -0,0 +1,184 @@
1
+ import fs from 'node:fs';
2
+ import path from 'node:path';
3
+ import semver from 'semver';
4
+
5
+ export const checkVersion = (version: string) => {
6
+ // Extract the version number starting from the first digit
7
+ const versionMatch = version.match(/\d.*/);
8
+ if (!versionMatch) return 0;
9
+
10
+ const cleanVersion = versionMatch[0];
11
+
12
+ if (semver.gte(cleanVersion, '5.0.0') && semver.lt(cleanVersion, '6.0.0')) {
13
+ return 5;
14
+ } else if (
15
+ semver.gte(cleanVersion, '6.0.0') &&
16
+ semver.lt(cleanVersion, '7.0.0')
17
+ ) {
18
+ return 6;
19
+ } else if (semver.gte(cleanVersion, '7.0.0')) {
20
+ return 7;
21
+ }
22
+
23
+ return 0;
24
+ };
25
+
26
+ export const findPackageJson = (startPath: string): string | null => {
27
+ let currentPath = startPath;
28
+ while (currentPath !== path.parse(currentPath).root) {
29
+ const packageJsonPath = path.join(currentPath, 'package.json');
30
+ if (fs.existsSync(packageJsonPath)) {
31
+ return packageJsonPath;
32
+ }
33
+ currentPath = path.dirname(currentPath);
34
+ }
35
+ return null;
36
+ };
37
+
38
+ const getDependencies = () => {
39
+ const userPackageJsonPath = path.resolve(process.cwd(), 'package.json');
40
+ let userDependencies: Record<string, string> = {};
41
+
42
+ if (fs.existsSync(userPackageJsonPath)) {
43
+ const userPackageJson = JSON.parse(
44
+ fs.readFileSync(userPackageJsonPath, 'utf-8'),
45
+ );
46
+ userDependencies = {
47
+ ...userPackageJson.dependencies,
48
+ ...userPackageJson.devDependencies,
49
+ };
50
+ }
51
+ return userDependencies;
52
+ };
53
+
54
+ const reactRouterDomV5AliasPath =
55
+ '@module-federation/bridge-react/dist/router-v5.es.js';
56
+ const reactRouterDomV6AliasPath =
57
+ '@module-federation/bridge-react/dist/router-v6.es.js';
58
+ const reactRouterDomV7AliasPath =
59
+ '@module-federation/bridge-react/dist/router-v7.es.js';
60
+
61
+ const setRouterAlias = (majorVersion: number, reactRouterDomPath: string) => {
62
+ let bridgeRouterAlias = {};
63
+ if (majorVersion === 5) {
64
+ bridgeRouterAlias = {
65
+ 'react-router-dom$': reactRouterDomV5AliasPath,
66
+ };
67
+ try {
68
+ require.resolve('react-router-dom/index.js');
69
+ } catch (error) {
70
+ // if react-router-dom/index.js cannot be resolved, set the alias to origin reactRouterDomPath
71
+ bridgeRouterAlias = {
72
+ ...bridgeRouterAlias,
73
+ 'react-router-dom/index.js': reactRouterDomPath,
74
+ };
75
+ }
76
+ } else if (majorVersion === 6) {
77
+ bridgeRouterAlias = {
78
+ 'react-router-dom$': reactRouterDomV6AliasPath,
79
+ };
80
+ try {
81
+ require.resolve('react-router-dom/dist/index.js');
82
+ } catch (error) {
83
+ // if react-router-dom/dist/index.js cannot be resolved, set the alias to origin reactRouterDomPath
84
+ bridgeRouterAlias = {
85
+ ...bridgeRouterAlias,
86
+ 'react-router-dom/dist/index.js': reactRouterDomPath,
87
+ };
88
+ }
89
+ } else if (majorVersion === 7) {
90
+ // React Router v7 uses 'react-router' package name with new dist structure
91
+ bridgeRouterAlias = {
92
+ 'react-router$': reactRouterDomV7AliasPath,
93
+ 'react-router-dom$': reactRouterDomV7AliasPath, // Keep compatibility for old imports
94
+ };
95
+
96
+ // Try to resolve v7's new dist structure
97
+ try {
98
+ require.resolve('react-router/dist/development/index.js');
99
+ } catch (error) {
100
+ try {
101
+ require.resolve('react-router/dist/production/index.js');
102
+ bridgeRouterAlias = {
103
+ ...bridgeRouterAlias,
104
+ 'react-router/dist/development/index.js':
105
+ reactRouterDomPath + '/dist/production/index.js',
106
+ };
107
+ } catch (error2) {
108
+ // Fallback to original path
109
+ bridgeRouterAlias = {
110
+ ...bridgeRouterAlias,
111
+ 'react-router/dist/development/index.js': reactRouterDomPath,
112
+ };
113
+ }
114
+ }
115
+
116
+ // Keep compatibility for old react-router-dom imports
117
+ try {
118
+ require.resolve('react-router-dom/dist/index.js');
119
+ } catch (error) {
120
+ bridgeRouterAlias = {
121
+ ...bridgeRouterAlias,
122
+ 'react-router-dom/dist/index.js': reactRouterDomPath,
123
+ };
124
+ }
125
+ }
126
+ return bridgeRouterAlias;
127
+ };
128
+
129
+ export const getBridgeRouterAlias = (
130
+ originalAlias: string,
131
+ ): Record<string, string> => {
132
+ const userDependencies = getDependencies();
133
+ let reactRouterDomPath = '';
134
+
135
+ if (originalAlias) {
136
+ reactRouterDomPath = originalAlias;
137
+ } else if (userDependencies['react-router']) {
138
+ // React Router v7 uses 'react-router' package name
139
+ try {
140
+ reactRouterDomPath = path.resolve(
141
+ process.cwd(),
142
+ 'node_modules/react-router',
143
+ );
144
+ } catch (error) {
145
+ console.log(error);
146
+ }
147
+ } else if (userDependencies['react-router-dom']) {
148
+ // React Router v5/v6 uses 'react-router-dom' package name
149
+ try {
150
+ reactRouterDomPath = path.resolve(
151
+ process.cwd(),
152
+ 'node_modules/react-router-dom',
153
+ );
154
+ } catch (error) {
155
+ console.log(error);
156
+ }
157
+ }
158
+
159
+ // if find react-router-dom in package.json
160
+ if (reactRouterDomPath) {
161
+ const packageJsonPath = findPackageJson(reactRouterDomPath) || '';
162
+ const packageJsonContent = JSON.parse(
163
+ fs.readFileSync(packageJsonPath, 'utf-8'),
164
+ );
165
+ const majorVersion = checkVersion(packageJsonContent.version);
166
+ const bridgeRouterAlias = setRouterAlias(majorVersion, reactRouterDomPath);
167
+ console.log(
168
+ '<<<<<<<<<<<<< bridgeRouterAlias >>>>>>>>>>>>>',
169
+ bridgeRouterAlias,
170
+ );
171
+ return bridgeRouterAlias;
172
+ } else {
173
+ // Default to v7 (latest) which uses 'react-router' package name
174
+ const bridgeRouterAlias = {
175
+ 'react-router$': reactRouterDomV7AliasPath,
176
+ 'react-router-dom$': reactRouterDomV7AliasPath, // Keep compatibility
177
+ };
178
+ console.log(
179
+ '<<<<<<<<<<<<< default bridgeRouterAlias >>>>>>>>>>>>>',
180
+ bridgeRouterAlias,
181
+ );
182
+ return bridgeRouterAlias;
183
+ }
184
+ };
package/tsconfig.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "compilerOptions": {
3
+ "useDefineForClassFields": true,
4
+
5
+ /* Bundler mode */
6
+ "allowImportingTsExtensions": true,
7
+ "resolveJsonModule": true,
8
+
9
+ "declarationDir": "./dist/types",
10
+ "rootDir": "./src",
11
+ "module": "commonjs",
12
+ "target": "es5",
13
+
14
+ /* Linting */
15
+ "noUnusedLocals": true,
16
+ "noUnusedParameters": true,
17
+ "noFallthroughCasesInSwitch": true,
18
+ "declaration": true,
19
+ "emitDeclarationOnly": true,
20
+ "outDir": "dist",
21
+ "skipLibCheck": true,
22
+ "strict": true,
23
+ "moduleResolution": "node",
24
+ "lib": ["esnext", "dom"],
25
+ "jsx": "preserve",
26
+ "esModuleInterop": true,
27
+ "allowSyntheticDefaultImports": true,
28
+ "sourceMap": true,
29
+ "baseUrl": ".",
30
+ "paths": {
31
+ "@/*": ["src/*"]
32
+ }
33
+ },
34
+ "include": [
35
+ "src/**/*.ts",
36
+ "src/**/*.tsx",
37
+ "src/**/*.vue",
38
+ "src/remoteApp.tsx",
39
+ "src/create.ts"
40
+ ],
41
+ "references": [{ "path": "./tsconfig.node.json" }]
42
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "compilerOptions": {
3
+ "composite": true,
4
+ "skipLibCheck": true,
5
+ "module": "ESNext",
6
+ "moduleResolution": "bundler",
7
+ "allowSyntheticDefaultImports": true,
8
+ "strict": true
9
+ },
10
+ "include": ["vite.config.ts"]
11
+ }
package/vite.config.ts ADDED
@@ -0,0 +1,24 @@
1
+ import { defineConfig } from 'vite';
2
+ import path from 'path';
3
+ import dts from 'vite-plugin-dts';
4
+
5
+ export default defineConfig({
6
+ plugins: [
7
+ dts({
8
+ rollupTypes: true,
9
+ }),
10
+ ],
11
+ build: {
12
+ lib: {
13
+ entry: {
14
+ index: path.resolve(__dirname, 'src/index.ts'),
15
+ },
16
+ formats: ['cjs', 'es'],
17
+ fileName: (format, entryName) => `${entryName}.${format}.js`,
18
+ },
19
+ rollupOptions: {
20
+ external: ['node:fs', 'node:path'],
21
+ },
22
+ minify: false,
23
+ },
24
+ });
@@ -0,0 +1,22 @@
1
+ import { defineConfig } from 'vitest/config';
2
+ import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
3
+ import path from 'path';
4
+ export default defineConfig({
5
+ define: {
6
+ __DEV__: true,
7
+ __TEST__: true,
8
+ __BROWSER__: false,
9
+ __VERSION__: '"unknown"',
10
+ __APP_VERSION__: '"0.0.0"',
11
+ },
12
+ plugins: [nxViteTsPaths()],
13
+ test: {
14
+ environment: 'jsdom',
15
+ include: [
16
+ path.resolve(__dirname, '__tests__/*.spec.ts'),
17
+ path.resolve(__dirname, '__tests__/*.spec.tsx'),
18
+ ],
19
+ globals: true,
20
+ testTimeout: 10000,
21
+ },
22
+ });