Install yarn

This commit is contained in:
Jay Trees 2022-04-08 12:55:35 +02:00
parent 0453e84836
commit 1fde8a81be
1927 changed files with 82144 additions and 83317 deletions

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/../../../../../nanoid/bin/nanoid.cjs" "$@"
ret=$?
else
node "$basedir/../../../../../nanoid/bin/nanoid.cjs" "$@"
ret=$?
fi
exit $ret

View file

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