summaryrefslogtreecommitdiff
path: root/www/lib/moment/scripts/npm_prepublish.sh
diff options
context:
space:
mode:
authorPliablePixels <pliablepixels@gmail.com>2015-07-02 10:33:26 -0400
committerPliablePixels <pliablepixels@gmail.com>2015-07-02 10:33:26 -0400
commitf3136eefe9105deb1d97123629dae80c2de66304 (patch)
tree5389bd34d555ab4c3c065292e17cd41576db33ae /www/lib/moment/scripts/npm_prepublish.sh
parent5e523cf0d1a3644f6a41709b777b08f73ec71d49 (diff)
updated libraries, squashed the problem of not getting bar handles on click, optimized montage view
Diffstat (limited to 'www/lib/moment/scripts/npm_prepublish.sh')
-rwxr-xr-xwww/lib/moment/scripts/npm_prepublish.sh43
1 files changed, 0 insertions, 43 deletions
diff --git a/www/lib/moment/scripts/npm_prepublish.sh b/www/lib/moment/scripts/npm_prepublish.sh
deleted file mode 100755
index a4889a55..00000000
--- a/www/lib/moment/scripts/npm_prepublish.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/bash
-
-set -e
-
-if [ "$#" != 1 ]; then
- echo "Please provide tag to checkout" >&2
- exit 1
-fi
-tag="$1"
-
-while [ "$PWD" != '/' -a ! -f moment.js ]; do
- cd ..
-done
-
-if [ ! -f moment.js ]; then
- echo "Run me from the moment repo" >&2
- exit 1
-fi
-
-basename=$(basename $PWD)
-src=moment-npm-git
-dest=moment-npm
-
-cd ..
-
-rm -rf $src $dest
-
-git clone $basename $src
-mkdir $dest
-
-
-cp $src/moment.js $dest
-cp $src/package.json $dest
-cp $src/README.md $dest
-cp $src/LICENSE $dest
-cp -r $src/locale $dest
-cp -r $src/min $dest
-cp $src/ender.js $dest
-cp $src/package.js $dest
-
-rm -rf $src
-
-echo "Check out $dest"