8000 GitHub - callumlocke/gulp-closure-compiler: Minify JavaScript with Closure Compiler
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

callumlocke/gulp-closure-compiler

Repository files navigation

gulp-closure-compiler Build Status

Minify JavaScript with Closure Compiler

Issues with the output or Java should be reported on the Closure Compiler issue tracker.

Install

Install with npm

npm install --save-dev gulp-closure-compiler

Example

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

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

API

closureCompiler(options)

See the Closure Compiler options.

License

MIT © Sindre Sorhus

About

Minify JavaScript with Closure Compiler

Resources

Stars

Watchers

Forks

Packages

No packages published
0