File tree Expand file tree Collapse file tree 13 files changed +5162
-3783
lines changed
native-federation-esbuild
native-federation-runtime Expand file tree Collapse file tree 13 files changed +5162
-3783
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" : " 19.0.1 " ,
4
+ "version" : " 19.0.2 " ,
5
5
"peerDependencies" : {
6
6
"@angular/common" : " >=18.0.0" ,
7
7
"@angular/core" : " >=18.0.0" ,
8
- "@module-federation/enhanced" : " ^0.8.7 " ,
9
- "@module-federation/runtime-core" : " ^0.6.15 "
8
+ "@module-federation/enhanced" : " ^0.9.0 " ,
9
+ "@module-federation/runtime-core" : " ^0.6.21 "
10
10
},
11
11
"dependencies" : {
12
12
"tslib" : " ^2.0.0"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @angular-architects/module-federation-tools" ,
3
- "version" : " 19.0.1 " ,
3
+ "version" : " 19.0.2 " ,
4
4
"license" : " MIT" ,
5
5
"peerDependencies" : {},
6
6
"dependencies" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @angular-architects/module-federation" ,
3
- "version" : " 19.0.1 " ,
3
+ "version" : " 19.0.2 " ,
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" : " 19.0.1 " ,
20
+ "@angular-architects/module-federation-runtime" : " 19.0.2 " ,
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 @@ -18,4 +18,4 @@ export function runBuilder(
18
18
) ;
19
19
}
20
20
21
- export default createBuilder ( runBuilder ) ;
21
+ export default createBuilder ( runBuilder as any ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @softarc/native-federation" ,
3
- "version" : " 2.0.22 " ,
3
+ "version" : " 2.0.23 " ,
4
4
"type" : " commonjs" ,
5
5
"license" : " MIT" ,
6
6
"dependencies" : {
7
7
"json5" : " ^2.2.0" ,
8
8
"npmlog" : " ^6.0.2" ,
9
- "@softarc/native-federation-runtime" : " 2.0.22 "
9
+ "@softarc/native-federation-runtime" : " 2.0.23 "
10
10
}
11
11
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @softarc/native-federation-esbuild" ,
3
- "version" : " 2.0.22 " ,
3
+ "version" : " 2.0.23 " ,
4
4
"type" : " commonjs" ,
5
5
"dependencies" : {
6
6
"@rollup/plugin-commonjs" : " ^22.0.2" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @softarc/native-federation-node" ,
3
- "version" : " 2.0.22 "
3
+ "version" : " 2.0.23 "
4
4
}
Original file line number Diff line number Diff line change @@ -74,11 +74,10 @@ async function loadFsManifest(
74
74
75
75
async function loadFsFederationInfo (
76
76
relBundlePath : string ,
77
- options ?: InitFederationOptions
78
77
) : Promise < FederationInfo > {
79
78
const manifestPath = path . join (
80
79
relBundlePath ,
81
- 'remoteEntry.json' + options ?. cacheTag ? `?t= ${ options . cacheTag } ` : ''
80
+ 'remoteEntry.json'
82
81
) ;
83
82
const content = await fs . readFile ( manifestPath , 'utf-8' ) ;
84
83
const manifest = JSON . parse ( content ) as FederationInfo ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @softarc/native-federation-runtime" ,
3
- "version" : " 2.0.22 " ,
3
+ "version" : " 2.0.23 " ,
4
4
"dependencies" : {
5
5
"tslib" : " ^2.3.0"
6
6
},
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @angular-architects/native-federation" ,
3
- "version" : " 19.0.10 " ,
3
+ "version" : " 19.0.11 " ,
4
4
"main" : " src/index.js" ,
5
5
"generators" : " ./collection.json" ,
6
6
"builders" : " ./builders.json" ,
20
20
},
21
21
"dependencies" : {
22
22
"@babel/core" : " ^7.19.0" ,
23
- "@softarc/native-federation" : " 2.0.22 " ,
24
- "@softarc/native-federation-runtime" : " 2.0.22 " ,
23
+ "@softarc/native-federation" : " 2.0.23 " ,
24
+ "@softarc/native-federation-runtime" : " 2.0.23 " ,
25
25
"@types/browser-sync" : " ^2.29.0" ,
26
26
"@chialab/esbuild-plugin-commonjs" : " ^0.18.0" ,
27
27
"browser-sync" : " ^3.0.2" ,
You can’t perform that action at this time.
0 commit comments