This package has been deprecated

Author message:

Deprecated. Check out [gulp-babel](https://github.com/babel/gulp-babel) instead.

gulp-es6-transpiler

1.0.1 • Public • Published

gulp-es6-transpiler Build Status

Transpile ES6 to ES5 with es6-transpiler

Issues with the output should be reported on the es6-transpiler issue tracker.

Install

$ npm install --save-dev gulp-es6-transpiler

Usage

var gulp = require('gulp');
var es6transpiler = require('gulp-es6-transpiler');
 
gulp.task('default', function () {
    return gulp.src('src/app.js')
        .pipe(es6transpiler())
        .pipe(gulp.dest('dist'));
});

API

es6transpiler(options)

Use the es6-transpiler options, except for filename, src, outputToConsole, outputFilename.

License

MIT © Sindre Sorhus

Package Sidebar

Install

npm i gulp-es6-transpiler

Weekly Downloads

31

Version

1.0.1

License

MIT

Last publish

Collaborators

  • sindresorhus