0.1.0 • Published 10 years ago

gulp-jsify v0.1.0

Weekly downloads
1
License
-
Repository
github
Last release
10 years ago

gulp-jsify

##Convert text files into requireable JavaScript modules using jsify

##Gulp plugin for jsify

Build Status NPM version

Getting Started

  1. Install the module with: npm install gulp-jsify --save-dev

  2. 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