added node_modules, and references to them to eliminate relying on cdn's

This commit is contained in:
Walker Waylon Scott 2017-07-25 07:48:51 -05:00
parent 5535ce916f
commit 50b88bf435
192 changed files with 31317 additions and 20 deletions

15
src/static/node_modules/.bin/dsv2json generated vendored Normal file
View file

@ -0,0 +1,15 @@
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../d3-dsv/bin/dsv2json" "$@"
ret=$?
else
node "$basedir/../d3-dsv/bin/dsv2json" "$@"
ret=$?
fi
exit $ret