@@ -43,15 +43,15 @@ export async function bundleExposedAndMappings(
43
43
let result ;
44
44
try {
45
45
result = await bundle ( {
46
- entryPoints,
47
- outdir : fedOptions . outputPath ,
48
- tsConfigPath : fedOptions . tsConfig ,
49
- external : externals ,
50
- dev : ! ! fedOptions . dev ,
51
- watch : fedOptions . watch ,
52
- mappedPaths : config . sharedMappings ,
53
- kind : 'mapping-or-exposed' ,
54
- hash,
46
+ entryPoints,
47
+ outdir : fedOptions . outputPath ,
48
+ tsConfigPath : fedOptions . tsConfig ,
49
+ external : externals ,
50
+ dev : ! ! fedOptions . dev ,
51
+ watch : fedOptions . watch ,
52
+ mappedPaths : config . sharedMappings ,
53
+ kind : 'mapping-or-exposed' ,
54
+ hash,
55
55
optimizedMappings : config . features . ignoreUnusedDeps ,
56
56
} ) ;
57
57
} catch ( error ) {
@@ -76,8 +76,8 @@ export async function bundleExposedAndMappings(
76
76
dev : ! fedOptions . dev
77
77
? undefined
78
78
: {
79
- entryPoint : normalize ( path . normalize ( item . fileName ) ) ,
80
- } ,
79
+ entryPoint : normalize ( path . normalize ( item . fileName ) ) ,
80
+ } ,
81
81
} ) ;
82
82
}
83
83
@@ -90,10 +90,10 @@ export async function bundleExposedAndMappings(
90
90
dev : ! fedOptions . dev
91
91
? undefined
92
92
: {
93
- entryPoint : normalize (
94
- path . join ( fedOptions . workspaceRoot , item . fileName )
95
- ) ,
96
- } ,
93
+ entryPoint : normalize (
94
+ path . join ( fedOptions . workspaceRoot , item . fileName )
95
+ ) ,
96
+ } ,
97
97
} ) ;
98
98
}
99
99
@@ -117,8 +117,8 @@ export function describeExposed(
117
117
dev : ! options . dev
118
118
? undefined
119
119
: {
120
- entryPoint : localPath ,
121
- } ,
120
+ entryPoint : localPath ,
121
+ } ,
122
122
} ) ;
123
123
}
124
124
@@ -142,8 +142,8 @@ export function describeSharedMappings(
142
142
dev : ! fedOptions . dev
143
143
? undefined
144
144
: {
145
- entryPoint : normalize ( path . normalize ( m . path ) ) ,
146
- } ,
145
+ entryPoint : normalize ( path . normalize ( m . path ) ) ,
146
+ } ,
147
147
} ) ;
148
148
}
149
149
0 commit comments