Laverna/laverna

View on GitHub
gulps/htmlmin.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

/**
 * Minify HTML files.
 */
module.exports = function(gulp, plugins) {
    return function() {
        return gulp.src('./app/*.html')
        .pipe(plugins.replace('<html class="no-js">', '<html manifest="app.appcache" class="no-js">'))
        .pipe(plugins.htmlmin({
            collapseWhitespace : true,
            quoteCharacter     : '\''
        }))
        .pipe(gulp.dest('./dist'));
    };
};