A buildout recipe to compile javascript with the Google Closure Compiler
Project description
Compress javascript files using the Google Closure Compiler
Usage
Minimal buildout config example:
[buildout] parts = closure-compile [closure-compile] recipe = c2c.recipe.closurecompile compiler = path/to/closure-compiler.jar level = SIMPLE_OPTIMIZATIONS input = foo/bar.js output = foo/bar.min.js
Where:
compiler: The path to the compiler jar file.
level: The compilation level: WHITESPACE_ONLY, SIMPLE_OPTIMIZATIONS or ADVANCED_OPTIMIZATIONS. Default is WHITESPACE_ONLY.
input: The files to compress separated with spaces. The path can be absolute or relative to the buildout directory.
output: The path to the minified file. If omitted, the result is saved to input (which must be unique).
Getting the jar
To automatically download and unzip the compiler from Google, you can use the hexagonit.recipe.download receipt:
[buildout] parts = closure-compile [closure-compile] recipe = c2c.recipe.closurecompile compiler = ${download-closure-compile:destination}/compiler.jar ... [download-closure-compile] recipe = hexagonit.recipe.download url = http://closure-compiler.googlecode.com/files/compiler-latest.zip
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file c2c.recipe.closurecompile-0.2.tar.gz
.
File metadata
- Download URL: c2c.recipe.closurecompile-0.2.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30a9b2fcbb1ea163d1dd3153bd42e14a96341f599cbe15b087e9ed7501a56fc1 |
|
MD5 | cddc877318336eea3a6b2d7060101c2f |
|
BLAKE2b-256 | c901cd58508c1273b4368f5a605dcb5dd69d57c1e49bd11f888ed464d83c96cd |