0.0.6 • Published 9 years ago

html-browserify v0.0.6

Weekly downloads
94
License
-
Repository
github
Last release
9 years ago

html-browserify

Build Status

Simple HTML transform for Browserify

##Install

npm install html-browserify

##Usuage with Gulp

//...
var html = require('html-browserify');
//...

gulp.task('js', function() {
  gulp.src('js/app.js')
    .pipe(browserify({
      insertGlobals: true,
      transform: html
    }))
    .pipe(concat('app.js'))
    .pipe(gulp.dest('./public/js'));
});