nyc-bookstores/node_modules/mapbox.js/build.sh
2013-05-27 13:45:59 -07:00

71 lines
1.7 KiB
Bash
Executable File

#!/bin/bash
TAG=$1
if [ -z $TAG ]; then
echo "Usage: build.sh <tag>"
exit;
fi
if [ -e dist/$TAG ]; then
echo "rm -r dist/$TAG if you want to re-build"
exit;
fi
if ! [[ $TAG =~ ^v[0-9]+\.[0-9]+\.[0-9]+(-dev.*)?$ ]]; then
echo "Tag must be in the form of v0.6.4"
exit;
fi
echo "--- BUILDING mapbox.js $TAG ---"
echo "Checking out tag..."
echo ""
echo ""
git checkout $TAG package.json
git checkout $TAG src/*
echo "Installing dependencies..."
echo ""
echo ""
npm install
echo "Concatenating mapbox.js..."
cat src/comment.js \
src/start.js \
node_modules/bean/bean.js \
node_modules/reqwest/reqwest.js \
src/end.js \
node_modules/mustache/mustache.js \
node_modules/modestmaps/modestmaps.js \
node_modules/wax/lib/html-sanitizer-bundle.js \
node_modules/wax/lib/html-sanitizer-loosen.js \
node_modules/wax/control/lib/*.js \
node_modules/wax/control/mm/*.js \
node_modules/wax/connectors/mm/*.js \
node_modules/easey/src/easey.js \
node_modules/easey/src/easey.handlers.js \
node_modules/markers/dist/markers.js \
src/map.js src/load.js src/layer.js \
src/ui.js src/interaction.js src/util.js > mapbox.js
echo "Minifying mapbox.min.js"
./node_modules/.bin/uglifyjs mapbox.js > mapbox.min.js
# css
echo "Concatenating mapbox.css..."
cat node_modules/markers/dist/markers.css \
node_modules/wax/theme/controls.css \
theme/mapbox.css > mapbox.css
mkdir "dist/$TAG"
# bake a release
cp mapbox.min.js "dist/$TAG/mapbox.js"
cp mapbox.js "dist/$TAG/mapbox.uncompressed.js"
cp mapbox.css "dist/$TAG/mapbox.css"
cp node_modules/wax/theme/map-controls.png "dist/$TAG/map-controls.png"
set -- `wc -c mapbox.min.js`
echo "mapbox.min.js size:"
units "$1 bytes" "kilobytes"