Skip to content

Commit

Permalink
build processes updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Jollus174 committed Jun 6, 2018
1 parent 2658a5f commit bec9068
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ gulp.task('moveserviceworker', function(){
return gulp.src('app/service-worker.js')
.pipe(gulp.dest('public'))
})
gulp.task('movereset', function(){
return gulp.src('app/reset/*')
.pipe(gulp.dest('public/reset'))
});
//

// Tie everything together into one glorious whole
Expand All @@ -101,7 +105,7 @@ gulp.task('moveserviceworker', function(){
gulp.task('build', function(){
runSequence(
'clean:public',
['sass','images','fonts','jsonminify','useref', 'movemanifest', 'moveserviceworker'])
['sass','images','fonts','jsonminify','useref', 'movemanifest', 'moveserviceworker', 'movereset'])
});

gulp.task('default', function(){
Expand Down

0 comments on commit bec9068

Please sign in to comment.