-
-
Save cstrachan88/28962308d095fffc17f4406c7cea7298 to your computer and use it in GitHub Desktop.
Yarn 1.12.3 global files for @vue/cli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | |
case `uname` in | |
*CYGWIN*) basedir=`cygpath -w "$basedir"`;; | |
esac | |
if [ -x "$basedir//bin/sh" ]; then | |
"$basedir//bin/sh" "$basedir/../Data/global/node_modules/.bin/vue" "$@" | |
ret=$? | |
else | |
/bin/sh "$basedir/../Data/global/node_modules/.bin/vue" "$@" | |
ret=$? | |
fi | |
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@"%~dp0\..\Data\global\node_modules\.bin\vue.cmd" %* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment