Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/hemanth/gulp-jstransform
- Owner: hemanth
- Created: 2014-04-23T13:07:44.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-10-22T05:35:12.000Z (about 2 years ago)
- Last Synced: 2024-11-01T09:43:10.083Z (about 1 month ago)
- Topics: gulp, javascript, jstransform
- Language: JavaScript
- Size: 18.6 KB
- Stars: 15
- Watchers: 2
- Forks: 5
- Open Issues: 18
-
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/'))
});
```