Welcome to mirror list, hosted at ThFree Co, Russian Federation.

compress-js « scripts - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 445cae49fbd98a9d9a2269f62bb8202695a98a59 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

for file in `find js -name '*.js' -not -name '*min.js'` ; do
    mkdir -p sources/`dirname $file`
    java -jar ./scripts/google-javascript-compiler/compiler.jar --js $file --js_output_file $file.tmp
    cp -a $file sources/$file
    mv $file.tmp $file
done