File tree 1 file changed +2
-6
lines changed
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -609,16 +609,12 @@ function flatten() {
609
609
} ) ;
610
610
}
611
611
gulp . task ( 'copy:fonts:dev' , ( ) => {
612
- < % _ if ( filters . bootstrap ) { _ % >
613
- return gulp . src ( 'node_modules/{bootstrap,font-awesome}/fonts/*' ) < % } else { % >
614
- return gulp . src ( 'node_modules/font-awesome/fonts/*' ) < % } % >
612
+ return gulp . src ( 'node_modules/{bootstrap,font-awesome}/fonts/*' )
615
613
. pipe ( flatten ( ) )
616
614
. pipe ( gulp . dest ( `${ clientPath } /assets/fonts` ) ) ;
617
615
} ) ;
618
616
gulp . task ( 'copy:fonts:dist' , ( ) => {
619
- < % _ if ( filters . bootstrap ) { _ % >
620
- return gulp . src ( 'node_modules/{bootstrap,font-awesome}/fonts/*' ) < % } else { % >
621
- return gulp . src ( 'node_modules/font-awesome/fonts/*' ) < % } % >
617
+ return gulp . src ( 'node_modules/{bootstrap,font-awesome}/fonts/*' )
622
618
. pipe ( flatten ( ) )
623
619
. pipe ( gulp . dest ( `${ paths . dist } /${ clientPath } /assets/fonts` ) ) ;
624
620
} ) ;
You can’t perform that action at this time.
0 commit comments