gulp-jsify
v0.1.0
Published
Convert text files into requireable JavaScript modules using jsify
Downloads
6
Readme
gulp-jsify
##Convert text files into requireable JavaScript modules using jsify
Getting Started
Install the module with:
npm install gulp-jsify --save-dev
Add a task to your
Gulpfile.js
:
var jsify = require('gulp-jsify');
gulp.task('build-templates', function() {
return gulp.src('./tmpl/**/*.html')
.pipe(jsify())
.pipe(gulp.dest('dist'));
});
Other stuff
- documentation - maybe I will add documentation if you ask it. open an issue for this.
- support - open an issue here.
License
MIT © 2014, Andrea Parodi