0.0.3 • Published 9 years ago

gulp-usemin-html v0.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

gulp-usemin

Replace references from non-optimized scripts, stylesheets and other assets to their optimized version within a set of HTML files

Getting Started

This plugin requires Gulp ~3.8.10

If you haven't used Gulp before, be sure to check out the Getting Started guide, as it explains how to create a Gulpfile as well as install and use Gulp plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install gulp-usemin-html --save-dev

Once the plugin has been installed, it may be enabled inside your Gulpfile with this line of JavaScript:

var htmlusemin = require('gulp-usemin-html')

The "htmlusemin" task

Overview

In your project's Gulpfile, add a section.

gulp.task('htmlusemin', function() {
    return gulp.src([basepath + '/source/**/*.html'])
        .pipe(usemin({
            js: {
                suffix: '-min',
                enable: true
            },
            css: {
                suffix: '.min',
                enable: true
            }
        }))
        .pipe(gulp.dest(basepath + '/build/'));
});

Options

options.js

Type: Object Default value: { suffix: '.min', enable: true }

options.css

Type: Object Default value: { suffix: '.min', enable: true }

Usage Examples

Replace the '.css' to '.min.css' and replace the '.js' to '.min.js' in HTML

In this example,replaces references from non-optimized scripts, stylesheets and other assets to their optimized version within a set of HTML files`

gulp.task('htmlusemin', function() {
    return gulp.src([basepath + '/source/**/*.html'])
        .pipe(usemin({
            js: {
                suffix: '-min',
                enable: true
            },
            css: {
                suffix: '.min',
                enable: true
            }
        }))
        .pipe(gulp.dest(basepath + '/build/'));
});

Release History

(Nothing yet)