gulp-closure-compiler-service
v0.6.0
Published
Gulp plugin to the Google Closure compiler service
Downloads
119
Maintainers
Readme
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
.