File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ const allowedLicenses = [
4848const bundleDependency = (
4949 wrapperIndexPath ,
5050 extraOutputOptions = { } ,
51- external = [ ]
51+ external = [ ] ,
5252) => ( {
5353 input : wrapperIndexPath ,
5454 output : {
@@ -74,7 +74,10 @@ const bundleDependency = (
7474 failOnViolation : true ,
7575 } ,
7676 output : {
77- file : path . join ( path . dirname ( wrapperIndexPath ) , 'THIRD_PARTY_NOTICES' ) ,
77+ file : path . join (
78+ path . dirname ( wrapperIndexPath ) ,
79+ 'THIRD_PARTY_NOTICES' ,
80+ ) ,
7881 template ( dependencies ) {
7982 const stringified_dependencies = dependencies . map ( dependency => {
8083 let arr = [ ] ;
@@ -113,6 +116,6 @@ export default [
113116 {
114117 inlineDynamicImports : true ,
115118 } ,
116- [ './bidi.js' , '../bidi/bidi.js' ]
119+ [ './bidi.js' , '../bidi/bidi.js' ] ,
117120 ) ,
118121] ;
You can’t perform that action at this time.
0 commit comments