2012-09-20 12:23:16 +00:00
|
|
|
#!/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
|
2012-09-20 12:23:16 +00:00
|
|
|
if [ -e $COMPRESSOR ]; then
|
2012-09-20 18:02:42 +00:00
|
|
|
$COMPRESSOR --type js -o nv.d3.min.js nv.d3.js
|
2012-09-20 12:23:16 +00:00
|
|
|
fi
|