@@ -508,8 +508,11 @@ gulp.task('wiredep:test', () => {
508
508
//FIXME: looks like font-awesome isn't getting loaded
509
509
gulp.task('build', cb => {
510
510
runSequence (
511
- 'clean:dist' ,
512
- 'clean:tmp' ,
511
+ [
512
+ 'clean:dist' ,
513
+ 'clean:tmp'
514
+ ] , < % if ( filters . jade ) { % >
515
+ 'jade' , < % } % >
513
516
'inject',
514
517
'wiredep:client',< % if ( filters . ts ) { % >
515
518
'tsd',< % } % >
@@ -532,11 +535,9 @@ gulp.task('build:client', ['transpile:client', 'styles', 'html', 'constant'], ()
532
535
var appFilter = plugins . filter ( '**/app.js' ) ;
533
536
var jsFilter = plugins . filter ( '**/*.js' ) ;
534
537
var cssFilter = plugins . filter ( '**/*.css' ) ;
535
- var htmlBlock = plugins . filter ( [ '**/*.!(html)' ] ) ; < % if ( filters . jade ) { % >
536
- var assetsFilter = plugins . filter ( '**/*.{js,css}' ) ; < % } % >
538
+ var htmlBlock = plugins . filter ( [ '**/*.!(html)' ] ) ;
537
539
538
- return gulp . src ( paths . client . mainView ) < % if ( filters . jade ) { % >
539
- . pipe ( plugins . jade ( { pretty : true } ) ) < % } % >
540
+ return gulp . src ( paths . client . mainView )
540
541
. pipe ( plugins . useref ( ) )
541
542
. pipe ( appFilter )
542
543
. pipe ( plugins . addSrc . append ( '.tmp/templates.js' ) )
@@ -555,13 +556,13 @@ gulp.task('build:client', ['transpile:client', 'styles', 'html', 'constant'], ()
555
556
. pipe ( htmlBlock )
556
557
. pipe ( plugins . rev ( ) )
557
558
. pipe ( htmlBlock . restore ( ) )
558
- . pipe ( plugins . revReplace ( { manifest} ) ) < % if ( filters . jade ) { % >
559
- . pipe ( assetsFilter ) < % } % >
559
+ . pipe ( plugins . revReplace ( { manifest} ) )
560
560
. pipe ( gulp . dest ( `${ paths . dist } /${ clientPath } ` ) ) ;
561
561
} ) ;
562
562
563
- gulp . task ( 'html' , function ( ) {
564
- return gulp . src ( `${ clientPath } /{app,components}/**/*.html` )
563
+ gulp . task ( 'html' , function ( ) { < % if ( filters . jade ) { % >
564
+ return gulp . src ( `.tmp/{app,components}/**/*.html` ) < % } else { % >
565
+ return gulp . src ( `${ clientPath } /{app,components}/**/*.html` ) < % } % >
565
566
. pipe ( plugins . angularTemplatecache ( {
566
567
module : '<%= scriptAppName %>'
567
568
} ) )
0 commit comments