5 lines
153 B
CoffeeScript
5 lines
153 B
CoffeeScript
gulp.task 'minify-prod-html', ->
|
|
gulp.src 'output_prod/**/*.html'
|
|
.pipe plugins.htmlmin config.htmlmin
|
|
.pipe gulp.dest 'output_prod'
|