Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hemanth/gulp-jstransform

Gulp plugin to transform ES6 to ES5.
https://github.com/hemanth/gulp-jstransform

gulp javascript jstransform

Last synced: about 1 month ago
JSON representation

Gulp plugin to transform ES6 to ES5.

Awesome Lists containing this project

README

        

## Gulp [jstransform](https://github.com/facebook/jstransform/)

## Usage

```javascript
var jstransform = require('gulp-jstransform');

gulp.task('jstransform', function() {
gulp.src('./src/*.js')
.pipe(jstransform().on('error', gutil.log))
.pipe(gulp.dest('./public/'))
});
```