Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

gavinhungry/gulp-closure-compiler-service

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.