1.3.10 • Published 9 years ago

gulp-traceur-cmdline v1.3.10

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

Gulp Traceur (Command Line)

Gulp plugin for Traceur. This plugin uses Traceur's command line instead of its Node API.

Why Traceur's command line ?
Traceur generates different outputs depending if you are using its Node API (the one that gulp-traceur uses) or the command line, in most cases, the output of the command line is the more accurate.

Install

Install the gulp-traceur-cmdline:

npm install gulp-traceur-cmdline --save-dev

##Usage

var gulpTraceurCmdline = require('gulp-traceur-cmdline');

gulp.task('gulpTraceurCmdline',function() {
  gulp.src("./source/js/main.js")
    .pipe(gulpTraceurCmdline({
      modules : 'inline'
    }))
    .pipe(gulp.dest('./dist/js/'));
});

API

Options

You can pass all current Traceur's options through gulp-traceur-cmdline. The default for the option modules is inline.

License

MIT Copyright (c) Juan Cabrera

1.3.10

9 years ago

1.3.9

9 years ago

1.3.8

9 years ago

1.3.7

9 years ago

1.3.6

9 years ago

1.2.5

9 years ago

1.2.4

9 years ago

1.1.4

9 years ago

1.1.3

9 years ago

1.1.2

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago