File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @angular-architects/module-federation-runtime" ,
3
3
"license" : " MIT" ,
4
- "version" : " 16.0.3 " ,
4
+ "version" : " 16.0.4 " ,
5
5
"peerDependencies" : {
6
6
"@angular/common" : " >=16.0.0" ,
7
7
"@angular/core" : " >=16.0.0"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @angular-architects/module-federation-tools" ,
3
- "version" : " 16.0.3 " ,
3
+ "version" : " 16.0.4 " ,
4
4
"license" : " MIT" ,
5
5
"peerDependencies" : {
6
6
"@angular/common" : " >=16.0.0" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @angular-architects/module-federation" ,
3
- "version" : " 16.0.3 " ,
3
+ "version" : " 16.0.4 " ,
4
4
"license" : " MIT" ,
5
5
"repository" : {
6
6
"type" : " GitHub" ,
17
17
"schematics" : " ./collection.json" ,
18
18
"builders" : " ./builders.json" ,
19
19
"dependencies" : {
20
- "@angular-architects/module-federation-runtime" : " 16.0.3 " ,
20
+ "@angular-architects/module-federation-runtime" : " 16.0.4 " ,
21
21
"word-wrap" : " ^1.2.3" ,
22
22
"callsite" : " ^1.0.0" ,
23
23
"node-fetch" : " ^2.6.7" ,
Original file line number Diff line number Diff line change @@ -41,7 +41,13 @@ export class SharedMappings {
41
41
}
42
42
43
43
for ( const key in mappings ) {
44
- const libPath = path . normalize ( path . join ( rootPath , mappings [ key ] [ 0 ] ) ) ;
44
+ const mapping = mappings [ key ] [ 0 ] ;
45
+
46
+ if ( mapping . includes ( '*' ) || key . includes ( '*' ) ) {
47
+ continue ;
48
+ }
49
+
50
+ const libPath = path . normalize ( path . join ( rootPath , mapping ) ) ;
45
51
const version = this . getPackageVersion ( libPath ) ;
46
52
47
53
if ( shared . includes ( key ) || shareAll ) {
You can’t perform that action at this time.
0 commit comments