Commit dist files

This commit is contained in:
Federico Grandi
2020-01-22 21:33:14 +01:00
parent d3ccc660f4
commit ec03bb8d6b
217 changed files with 16175 additions and 0 deletions

15
node_modules/.bin/shjs generated vendored Normal file
View File

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