Added cordova

Cordova was added
This commit is contained in:
Georg Reisinger
2018-10-29 09:57:48 +01:00
parent ea913a9088
commit dc00f73183
6652 changed files with 824563 additions and 0 deletions

15
express-server/node_modules/.bin/cordova 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/../cordova/bin/cordova" "$@"
ret=$?
else
node "$basedir/../cordova/bin/cordova" "$@"
ret=$?
fi
exit $ret

7
express-server/node_modules/.bin/cordova.cmd generated vendored Normal file
View File

@ -0,0 +1,7 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\cordova\bin\cordova" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\cordova\bin\cordova" %*
)