Compare commits

...

1 Commits

Author SHA1 Message Date
Colum Ferry 40faa1e70b fix(module-federation): move dep to peerDep in angular and react 2025-08-07 12:15:47 +01:00
2 changed files with 12 additions and 2 deletions
+4 -1
View File
@@ -50,7 +50,6 @@
"@nx/devkit": "workspace:*",
"@nx/eslint": "workspace:*",
"@nx/js": "workspace:*",
"@nx/module-federation": "workspace:*",
"@nx/rspack": "workspace:*",
"@nx/web": "workspace:*",
"@nx/webpack": "workspace:*",
@@ -74,6 +73,7 @@
"@angular-devkit/build-angular": ">= 18.0.0 < 21.0.0",
"@angular-devkit/core": ">= 18.0.0 < 21.0.0",
"@angular-devkit/schematics": ">= 18.0.0 < 21.0.0",
"@nx/module-federation": "workspace:*",
"@schematics/angular": ">= 18.0.0 < 21.0.0",
"ng-packagr": ">= 18.0.0 < 21.0.0",
"rxjs": "^6.5.3 || ^7.5.0"
@@ -85,6 +85,9 @@
"@angular-devkit/build-angular": {
"optional": true
},
"@nx/module-federation": {
"optional": true
},
"ng-packagr": {
"optional": true
}
+8 -1
View File
@@ -43,7 +43,6 @@
"@nx/eslint": "workspace:*",
"@nx/web": "workspace:*",
"@nx/vite": "workspace:*",
"@nx/module-federation": "workspace:*",
"@nx/rollup": "workspace:*",
"express": "^4.21.2",
"http-proxy-middleware": "^3.0.3",
@@ -52,6 +51,14 @@
"devDependencies": {
"nx": "workspace:*"
},
"peerDependencies": {
"@nx/module-federation": "workspace:*"
},
"peerDependenciesMeta": {
"@nx/module-federation": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}