https://github.com/hemanth/gulp-jstransform
Gulp plugin to transform ES6 to ES5.
https://github.com/hemanth/gulp-jstransform
gulp javascript jstransform
Last synced: 5 days ago
JSON representation
Gulp plugin to transform ES6 to ES5.
- Host: GitHub
- URL: https://github.com/hemanth/gulp-jstransform
- Owner: hemanth
- Created: 2014-04-23T13:07:44.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2024-12-06T04:34:22.000Z (5 months ago)
- Last Synced: 2025-03-28T18:21:23.435Z (23 days ago)
- Topics: gulp, javascript, jstransform
- Language: JavaScript
- Size: 19.5 KB
- Stars: 15
- Watchers: 2
- Forks: 5
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- es6-tools - gulp-jstransform - ES6 → ES5 using FB's [jstransform](https://github.com/facebook/jstransform) (Build-time transpilation / Gulp Plugins)
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/'))
});
```