0.6.0 • Published 8 years ago

gulp-closure-compiler-service v0.6.0

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

gulp-closure-compiler-service

Gulp plugin to compile JavaScript with the Google Closure compiler service. No Java dependency.

Installation

$ npm install gulp-closure-compiler-service

Usage

var closure = require('gulp-closure-compiler-service');

gulp.task('compile', function() {
  return gulp.src('src/*.js')
    .pipe(closure())
    .pipe(gulp.dest('dist'));
});

Options can be passed to the API:

.pipe(closure({
  language: 'ECMASCRIPT5',
  compilation_level: 'WHITESPACE_ONLY'
}))

License

This software is released under the terms of the MIT license. See LICENSE.