@@ -1,15 +0,0 @@ | |||
#!/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/../acorn/bin/acorn" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../acorn/bin/acorn" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\acorn\bin\acorn" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../acorn/bin/acorn" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../acorn/bin/acorn" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../ansi-html/bin/ansi-html" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../ansi-html/bin/ansi-html" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\ansi-html\bin\ansi-html" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../ansi-html/bin/ansi-html" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../ansi-html/bin/ansi-html" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../atob/bin/atob.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../atob/bin/atob.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\atob\bin\atob.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../atob/bin/atob.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../atob/bin/atob.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../autoprefixer/bin/autoprefixer" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../autoprefixer/bin/autoprefixer" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\autoprefixer\bin\autoprefixer" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../autoprefixer/bin/autoprefixer" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../autoprefixer/bin/autoprefixer" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../browserslist/cli.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../browserslist/cli.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\browserslist\cli.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../browserslist/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../browserslist/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../cssesc/bin/cssesc" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../cssesc/bin/cssesc" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\cssesc\bin\cssesc" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../cssesc/bin/cssesc" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../cssesc/bin/cssesc" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../errno/cli.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../errno/cli.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\errno\cli.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../errno/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../errno/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../eslint/bin/eslint.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../eslint/bin/eslint.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\eslint\bin\eslint.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../eslint/bin/eslint.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../eslint/bin/eslint.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../esprima/bin/esparse.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../esprima/bin/esparse.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\esprima\bin\esparse.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../esprima/bin/esparse.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../esprima/bin/esparse.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../esprima/bin/esvalidate.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../esprima/bin/esvalidate.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\esprima\bin\esvalidate.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../esprima/bin/esvalidate.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../esprima/bin/esvalidate.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../@mapbox/mapbox-gl-style-spec/bin/gl-style-composite" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../@mapbox/mapbox-gl-style-spec/bin/gl-style-composite" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\@mapbox\mapbox-gl-style-spec\bin\gl-style-composite" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../@mapbox/mapbox-gl-style-spec/bin/gl-style-composite" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../@mapbox/mapbox-gl-style-spec/bin/gl-style-composite" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../@mapbox/mapbox-gl-style-spec/bin/gl-style-format" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../@mapbox/mapbox-gl-style-spec/bin/gl-style-format" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\@mapbox\mapbox-gl-style-spec\bin\gl-style-format" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../@mapbox/mapbox-gl-style-spec/bin/gl-style-format" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../@mapbox/mapbox-gl-style-spec/bin/gl-style-format" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../@mapbox/mapbox-gl-style-spec/bin/gl-style-migrate" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../@mapbox/mapbox-gl-style-spec/bin/gl-style-migrate" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\@mapbox\mapbox-gl-style-spec\bin\gl-style-migrate" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../@mapbox/mapbox-gl-style-spec/bin/gl-style-migrate" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../@mapbox/mapbox-gl-style-spec/bin/gl-style-migrate" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../@mapbox/mapbox-gl-style-spec/bin/gl-style-validate" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../@mapbox/mapbox-gl-style-spec/bin/gl-style-validate" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\@mapbox\mapbox-gl-style-spec\bin\gl-style-validate" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../@mapbox/mapbox-gl-style-spec/bin/gl-style-validate" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../@mapbox/mapbox-gl-style-spec/bin/gl-style-validate" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../he/bin/he" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../he/bin/he" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\he\bin\he" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../he/bin/he" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../he/bin/he" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../cli-highlight/bin/highlight" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../cli-highlight/bin/highlight" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\cli-highlight\bin\highlight" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../cli-highlight/bin/highlight" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../cli-highlight/bin/highlight" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../html-minifier/cli.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../html-minifier/cli.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\html-minifier\cli.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../html-minifier/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../html-minifier/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../import-local/fixtures/cli.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../import-local/fixtures/cli.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\import-local\fixtures\cli.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../import-local/fixtures/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../import-local/fixtures/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../in-publish/in-install.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../in-publish/in-install.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\in-publish\in-install.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../in-publish/in-install.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../in-publish/in-install.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../in-publish/in-publish.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../in-publish/in-publish.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\in-publish\in-publish.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../in-publish/in-publish.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../in-publish/in-publish.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../is-ci/bin.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../is-ci/bin.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\is-ci\bin.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../is-ci/bin.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../is-ci/bin.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../is-docker/cli.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../is-docker/cli.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\is-docker\cli.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../is-docker/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../is-docker/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../js-yaml/bin/js-yaml.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../js-yaml/bin/js-yaml.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\js-yaml\bin\js-yaml.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../js-yaml/bin/js-yaml.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../js-yaml/bin/js-yaml.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../jsesc/bin/jsesc" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../jsesc/bin/jsesc" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\jsesc\bin\jsesc" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../jsesc/bin/jsesc" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../jsesc/bin/jsesc" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../json5/lib/cli.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../json5/lib/cli.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\json5\lib\cli.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../json5/lib/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../json5/lib/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../miller-rabin/bin/miller-rabin" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../miller-rabin/bin/miller-rabin" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\miller-rabin\bin\miller-rabin" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../miller-rabin/bin/miller-rabin" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../miller-rabin/bin/miller-rabin" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../mime/cli.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../mime/cli.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\mime\cli.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../mime/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../mime/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../mkdirp/bin/cmd.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../mkdirp/bin/cmd.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\mkdirp\bin\cmd.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../mkdirp/bin/cmd.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../mkdirp/bin/cmd.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../multicast-dns/cli.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../multicast-dns/cli.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\multicast-dns\cli.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../multicast-dns/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../multicast-dns/cli.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../node-gyp/bin/node-gyp.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../node-gyp/bin/node-gyp.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\node-gyp\bin\node-gyp.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../node-gyp/bin/node-gyp.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../node-gyp/bin/node-gyp.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../node-sass/bin/node-sass" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../node-sass/bin/node-sass" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\node-sass\bin\node-sass" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../node-sass/bin/node-sass" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../node-sass/bin/node-sass" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../nopt/bin/nopt.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../nopt/bin/nopt.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\nopt\bin\nopt.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../nopt/bin/nopt.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../nopt/bin/nopt.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |
@@ -1,15 +0,0 @@ | |||
#!/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/../in-publish/not-in-install.js" "$@" | |||
ret=$? | |||
else | |||
node "$basedir/../in-publish/not-in-install.js" "$@" | |||
ret=$? | |||
fi | |||
exit $ret |
@@ -1,17 +0,0 @@ | |||
@ECHO off | |||
SETLOCAL | |||
CALL :find_dp0 | |||
IF EXIST "%dp0%\node.exe" ( | |||
SET "_prog=%dp0%\node.exe" | |||
) ELSE ( | |||
SET "_prog=node" | |||
SET PATHEXT=%PATHEXT:;.JS;=;% | |||
) | |||
"%_prog%" "%dp0%\..\in-publish\not-in-install.js" %* | |||
ENDLOCAL | |||
EXIT /b %errorlevel% | |||
:find_dp0 | |||
SET dp0=%~dp0 | |||
EXIT /b |
@@ -1,18 +0,0 @@ | |||
#!/usr/bin/env pwsh | |||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | |||
$exe="" | |||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | |||
# Fix case when both the Windows and Linux builds of Node | |||
# are installed in the same directory | |||
$exe=".exe" | |||
} | |||
$ret=0 | |||
if (Test-Path "$basedir/node$exe") { | |||
& "$basedir/node$exe" "$basedir/../in-publish/not-in-install.js" $args | |||
$ret=$LASTEXITCODE | |||
} else { | |||
& "node$exe" "$basedir/../in-publish/not-in-install.js" $args | |||
$ret=$LASTEXITCODE | |||
} | |||
exit $ret |