1.0.1 • Published 5 years ago

@pirxpilot/html-browserify v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

html-browserify

Build Status

Simple HTML transform for Browserify

Install

npm install html-browserify

Usage 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'));
});