Login   Register  
Icontem

File: compile.sh

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Javier Camelis  >  JavaScript Multi Key Array  >  compile.sh  >  Download  
File: compile.sh
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: JavaScript Multi Key Array
Set and get values from arrays using multiple keys
Author: By
Last change: Download compiler.jar if not present.
Date: 2013-04-26 08:21
Size: 508 bytes
 

Contents

Class file image Download
if [ ! -f scripts/compiler.jar ]
then
    echo Downloading Closure Compiler
    wget http://closure-compiler.googlecode.com/files/compiler-latest.zip
    unzip compiler-latest.zip compiler.jar -d scripts/
    rm compiler-latest.zip
fi

echo Compiling and Minifying with Closure Compiler
java -jar scripts/compiler.jar --js jcamelis.multiKey.js --js_output_file jcamelis.multiKey.min.js

cat license.txt >> temp.txt
cat jcamelis.multiKey.min.js >> temp.txt
cat temp.txt > jcamelis.multiKey.min.js

rm temp.txt