grunt-closurecompiler-new-grunt

1.0.1 • Public • Published

The ClosureCompiler.js Grunt Task Build Status

Yet simple, but powerful. Available through npm.

Usage

grunt.initConfig({
    closurecompiler: {
        minify: {
            files: {
                // Destination: Sources...
                "Gruntfile.min.js": [__filename]
            },
            options: {
                // Any options supported by Closure Compiler, for example:
                "compilation_level": "SIMPLE_OPTIMIZATIONS",
                
                // Plus a simultaneous processes limit
                "max_processes": 5,

                // And an option to add a banner, license or similar on top
                "banner": "/* hello world! */"
            }
        }
    },
});

grunt.registerTask('minify', ['closurecompiler:minify']);

Run it: grunt minify

See also: Gruntfile.js

Works like any other Grunt plugin/task. See the ClosureCompiler.js project for detailed information on available options and the Grunt website for everything Grunt.

License

Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.html

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.1
    3
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.1
    3
  • 1.0.0
    0

Package Sidebar

Install

npm i grunt-closurecompiler-new-grunt

Weekly Downloads

3

Version

1.0.1

License

Apache License, Version 2.0

Last publish

Collaborators

  • kaptenjansson