gulp-cuteframe-html2js
v1.0.1
Published
converts a html file to js
Downloads
2
Readme
HTML templates to JS
Usage
An example usage with gulp:
var gulp = require('gulp');
var html2js = require('gulp-cuteframe-html2js');
gulp.task('tpl', function() {
return gulp.src( 'my/tpl.html' )
.pipe( html2js() )
.pipe( gulp.dest( 'tpl' ) );
});