0.0.1 • Published 10 years ago

gulp-estarify v0.0.1

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

gulp-estarify

es-tar plugin for gulp

Install

$ npm install gulp-estarify

Usage

var fs = require('fs'),
    gulp = require('gulp'),
    estarify = require('gulp-estarify');

gulp.task('estarify',function(){
  var jsxPath = __dirname+'/test/fixtures/*.jsx';
  return gulp.src(jsxPath)
    .pipe(estarify({encoding:'utf8'}))
    .pipe(gulp.dest('./build'));
});