gulp-jsify

0.1.0 • Public • Published

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

/gulp-jsify/

    Package Sidebar

    Install

    npm i gulp-jsify

    Weekly Downloads

    1

    Version

    0.1.0

    License

    none

    Last publish

    Collaborators

    • parroit