0.2.4 • Published 9 years ago

gulp-jsdc v0.2.4

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

gulp-jsdc

compiler es6 to es5 by jsdc

https://github.com/army8735/jsdc

NPM version Build Status Coverage Status Dependency Status

Usage

var gJsdc = require('gulp-jsdc');

gulp.task('jsdc', function() {
  gulp.src('**/*.js')
    .pipe(gJsdc())
    .pipe(gulp.dest('dist'))
});

Options

var gJsdc = require('gulp-jsdc');

gulp.task('jsdc', function() {
  gulp.src('**/*.js')
    .pipe(gJsdc({
      define: true
    }))
    .pipe(gulp.dest('dist'))
});

It will wrap define for CommonJS module when config define: true

0.2.4

9 years ago

0.2.3

9 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago