Metadata-Version: 1.0
Name: c2c.recipe.closurecompile
Version: 0.1
Summary: A buildout recipe to compile javascript with the Google Closure Compiler
Home-page: http://github.com/fredj/c2c.recipe.closurecompile
Author: Frederic Junod
Author-email: frederic.junod@camptocamp.com
License: MIT License
Description: Usage
        -----
        Minimal buildout config example:
        
        [buildout]
        parts = jsbuild
        
        [jsbuild]
        recipe = c2c.recipe.closurecompile
        compiler = ${closure-compile:destination}/compiler.jar
        level = SIMPLE_OPTIMIZATIONS
        input = foo/bar.js
        output = foo/bar.min.js
        
        [closure-compile]
        recipe = hexagonit.recipe.download
        url = http://closure-compiler.googlecode.com/files/compiler-latest.zip
        
        The default 'level' is WHITESPACE_ONLY.
        If 'output' is not specified, the minified version is written into 'input'.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Framework :: Buildout
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
