Skip to content
This repository was archived by the owner on Jul 21, 2019. It is now read-only.

Commit e22614b

Browse files
committed
Fix process html gulp task
Signed-off-by: Matt Stratton <[email protected]>
1 parent 9575257 commit e22614b

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

gulp/tasks/process-html.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@ var gulp = require('gulp'),
33
imgRetina = require('gulp-img-retina');
44
// runSequence = require('run-sequence');
55

6-
gulp.task('process-html', function(callback) {
7-
runSequence('min-html', 'retina-html',
8-
callback
9-
)
10-
})
6+
7+
118

129
gulp.task('copy-html', function(){
1310
return gulp.src('public/**/*.html')
@@ -35,3 +32,5 @@ gulp.task('retina-html', function() {
3532
})
3633
.pipe(gulp.dest('dist'));
3734
})
35+
36+
gulp.task('process-html', gulp.series('min-html', 'retina-html'));

0 commit comments

Comments
 (0)