Grunt plugin for compiling code using Google Closure Compiler’s REST API.
This plugin requires Grunt ~0.4.1
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-gcc-rest --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-gcc-rest');
In your project's Gruntfile, add a section named gcc_rest
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
gcc_rest: {
options: {
params: {}
}
}
});
Type: Object
Default value: {}
This parameter contains the request parameters sent to the Google Closure Compiler's REST API.
Documentation on Google Closure Compiler's request parameters can be found here. The additional web service options are also supported. Unsupported parameters will print a warning. grunt-gcc-rest does not overwrite Google Closure Compiler's default settings.
grunt.initConfig({
gcc_rest: {
files: {
'destination.js': ['source/*.js']
},
options: {
params: {
language: 'ECMASCRIPT5_STRICT',
compilation_level: 'ADVANCED_OPTIMIZATIONS',
warning_level: 'VERBOSE'
}
}
}
});
- 2016-02-29: v0.1.6 Support Grunt 1.0
- 2014-03-06: v0.1.5 Fix issues when compiling to multiple files
- 2013-11-08: v0.1.4 Let gcc-rest take care of error logging
- 2013-11-08: v0.1.3 Fix issue when compiling multiple tasks
- 2013-10-05: v0.1.2 Fix error in handling gcc-rest logging
- 2013-09-08: v0.1.0 Initial version