added node_modules, and references to them to eliminate relying on cdn's
This commit is contained in:
parent
5535ce916f
commit
50b88bf435
192 changed files with 31317 additions and 20 deletions
15
src/static/node_modules/.bin/json2dsv
generated
vendored
Normal file
15
src/static/node_modules/.bin/json2dsv
generated
vendored
Normal 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/json2dsv" "$@"
|
||||
ret=$?
|
||||
else
|
||||
node "$basedir/../d3-dsv/bin/json2dsv" "$@"
|
||||
ret=$?
|
||||
fi
|
||||
exit $ret
|
||||
Loading…
Add table
Add a link
Reference in a new issue