gulp-processhtml
Gulp plugin uses Denis Ciccale's node-htmlprocessor
to process/transform html files.

- npm:
npm install gulp-processhtml --save-dev
Gulpfile
var gulp = require('gulp'),
processhtml = require('gulp-processhtml')
opts = { };
gulp.task('default', function () {
return gulp.src('./*.html')
.pipe(processhtml(opts))
.pipe(gulp.dest('dist'));
});
Example Usage
You might need to change some attributes in your html, when you're releasing
for a different environment.
Using this plugin, you can transform this:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<script src="app.js"></script>
<script src="http://192.168.0.1:35729/livereload.js?snipver=1"></script>
<script src="http://192.168.0.1:35729/livereload.js?snipver=1"></script>
</body>
</html>
To this:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.min.css">
</head>
<body>
<script src="app.min.js"></script>
Goodbye Livereload...
</body>
</html>
Credits
Denis Ciccale