nvd3/build.sh

7 lines
223 B
Bash
Raw Normal View History

#!/bin/bash
COMPRESSOR=`which yui-compressor`
2012-09-20 18:33:07 +00:00
cat src/intro.js src/core.js src/tooltip.js src/utils.js src/models/*.js src/outro.js > nv.d3.js
if [ -e $COMPRESSOR ]; then
$COMPRESSOR --type js -o nv.d3.min.js nv.d3.js
fi