改了url

This commit is contained in:
z
2025-05-16 12:11:51 +09:00
parent 68cb20c2d5
commit 4b91f4c4d2
312 changed files with 20217 additions and 366 deletions

13
node_modules/.bin/browser-sync generated vendored
View File

@ -2,14 +2,15 @@
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../browser-sync/dist/bin.js" "$@"
ret=$?
exec "$basedir/node" "$basedir/../browser-sync/dist/bin.js" "$@"
else
node "$basedir/../browser-sync/dist/bin.js" "$@"
ret=$?
exec node "$basedir/../browser-sync/dist/bin.js" "$@"
fi
exit $ret

22
node_modules/.bin/browser-sync.cmd generated vendored
View File

@ -1,7 +1,17 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\browser-sync\dist\bin.js" %*
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\browser-sync\dist\bin.js" %*
)
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\browser-sync\dist\bin.js" %*

28
node_modules/.bin/browser-sync.ps1 generated vendored Normal file
View File

@ -0,0 +1,28 @@
#!/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") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../browser-sync/dist/bin.js" $args
} else {
& "$basedir/node$exe" "$basedir/../browser-sync/dist/bin.js" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../browser-sync/dist/bin.js" $args
} else {
& "node$exe" "$basedir/../browser-sync/dist/bin.js" $args
}
$ret=$LASTEXITCODE
}
exit $ret

13
node_modules/.bin/dev-ip generated vendored
View File

@ -2,14 +2,15 @@
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../dev-ip/lib/dev-ip.js" "$@"
ret=$?
exec "$basedir/node" "$basedir/../dev-ip/lib/dev-ip.js" "$@"
else
node "$basedir/../dev-ip/lib/dev-ip.js" "$@"
ret=$?
exec node "$basedir/../dev-ip/lib/dev-ip.js" "$@"
fi
exit $ret

22
node_modules/.bin/dev-ip.cmd generated vendored
View File

@ -1,7 +1,17 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\dev-ip\lib\dev-ip.js" %*
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\dev-ip\lib\dev-ip.js" %*
)
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\dev-ip\lib\dev-ip.js" %*

28
node_modules/.bin/dev-ip.ps1 generated vendored Normal file
View File

@ -0,0 +1,28 @@
#!/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") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../dev-ip/lib/dev-ip.js" $args
} else {
& "$basedir/node$exe" "$basedir/../dev-ip/lib/dev-ip.js" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../dev-ip/lib/dev-ip.js" $args
} else {
& "node$exe" "$basedir/../dev-ip/lib/dev-ip.js" $args
}
$ret=$LASTEXITCODE
}
exit $ret

13
node_modules/.bin/lite-server generated vendored
View File

@ -2,14 +2,15 @@
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../lite-server/bin/lite-server" "$@"
ret=$?
exec "$basedir/node" "$basedir/../lite-server/bin/lite-server" "$@"
else
node "$basedir/../lite-server/bin/lite-server" "$@"
ret=$?
exec node "$basedir/../lite-server/bin/lite-server" "$@"
fi
exit $ret

22
node_modules/.bin/lite-server.cmd generated vendored
View File

@ -1,7 +1,17 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\lite-server\bin\lite-server" %*
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\lite-server\bin\lite-server" %*
)
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\lite-server\bin\lite-server" %*

28
node_modules/.bin/lite-server.ps1 generated vendored Normal file
View File

@ -0,0 +1,28 @@
#!/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") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../lite-server/bin/lite-server" $args
} else {
& "$basedir/node$exe" "$basedir/../lite-server/bin/lite-server" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../lite-server/bin/lite-server" $args
} else {
& "node$exe" "$basedir/../lite-server/bin/lite-server" $args
}
$ret=$LASTEXITCODE
}
exit $ret

13
node_modules/.bin/lt generated vendored
View File

@ -2,14 +2,15 @@
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../localtunnel/bin/lt.js" "$@"
ret=$?
exec "$basedir/node" "$basedir/../localtunnel/bin/lt.js" "$@"
else
node "$basedir/../localtunnel/bin/lt.js" "$@"
ret=$?
exec node "$basedir/../localtunnel/bin/lt.js" "$@"
fi
exit $ret

22
node_modules/.bin/lt.cmd generated vendored
View File

@ -1,7 +1,17 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\localtunnel\bin\lt.js" %*
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\localtunnel\bin\lt.js" %*
)
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\localtunnel\bin\lt.js" %*

28
node_modules/.bin/lt.ps1 generated vendored Normal file
View File

@ -0,0 +1,28 @@
#!/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") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../localtunnel/bin/lt.js" $args
} else {
& "$basedir/node$exe" "$basedir/../localtunnel/bin/lt.js" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../localtunnel/bin/lt.js" $args
} else {
& "node$exe" "$basedir/../localtunnel/bin/lt.js" $args
}
$ret=$LASTEXITCODE
}
exit $ret

13
node_modules/.bin/mime generated vendored
View File

@ -2,14 +2,15 @@
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../mime/cli.js" "$@"
ret=$?
exec "$basedir/node" "$basedir/../mime/cli.js" "$@"
else
node "$basedir/../mime/cli.js" "$@"
ret=$?
exec node "$basedir/../mime/cli.js" "$@"
fi
exit $ret

22
node_modules/.bin/mime.cmd generated vendored
View File

@ -1,7 +1,17 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\mime\cli.js" %*
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\mime\cli.js" %*
)
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\mime\cli.js" %*

28
node_modules/.bin/mime.ps1 generated vendored Normal file
View File

@ -0,0 +1,28 @@
#!/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") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../mime/cli.js" $args
} else {
& "$basedir/node$exe" "$basedir/../mime/cli.js" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../mime/cli.js" $args
} else {
& "node$exe" "$basedir/../mime/cli.js" $args
}
$ret=$LASTEXITCODE
}
exit $ret

13
node_modules/.bin/throttleproxy generated vendored
View File

@ -2,14 +2,15 @@
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../stream-throttle/bin/throttleproxy.js" "$@"
ret=$?
exec "$basedir/node" "$basedir/../stream-throttle/bin/throttleproxy.js" "$@"
else
node "$basedir/../stream-throttle/bin/throttleproxy.js" "$@"
ret=$?
exec node "$basedir/../stream-throttle/bin/throttleproxy.js" "$@"
fi
exit $ret

22
node_modules/.bin/throttleproxy.cmd generated vendored
View File

@ -1,7 +1,17 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\stream-throttle\bin\throttleproxy.js" %*
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\stream-throttle\bin\throttleproxy.js" %*
)
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\stream-throttle\bin\throttleproxy.js" %*

28
node_modules/.bin/throttleproxy.ps1 generated vendored Normal file
View File

@ -0,0 +1,28 @@
#!/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") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../stream-throttle/bin/throttleproxy.js" $args
} else {
& "$basedir/node$exe" "$basedir/../stream-throttle/bin/throttleproxy.js" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../stream-throttle/bin/throttleproxy.js" $args
} else {
& "node$exe" "$basedir/../stream-throttle/bin/throttleproxy.js" $args
}
$ret=$LASTEXITCODE
}
exit $ret

13
node_modules/.bin/ua-parser-js generated vendored
View File

@ -2,14 +2,15 @@
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../ua-parser-js/script/cli.js" "$@"
ret=$?
exec "$basedir/node" "$basedir/../ua-parser-js/script/cli.js" "$@"
else
node "$basedir/../ua-parser-js/script/cli.js" "$@"
ret=$?
exec node "$basedir/../ua-parser-js/script/cli.js" "$@"
fi
exit $ret

22
node_modules/.bin/ua-parser-js.cmd generated vendored
View File

@ -1,7 +1,17 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\ua-parser-js\script\cli.js" %*
@ECHO off
GOTO start
:find_dp0
SET dp0=%~dp0
EXIT /b
:start
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\ua-parser-js\script\cli.js" %*
)
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\ua-parser-js\script\cli.js" %*

28
node_modules/.bin/ua-parser-js.ps1 generated vendored Normal file
View File

@ -0,0 +1,28 @@
#!/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") {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "$basedir/node$exe" "$basedir/../ua-parser-js/script/cli.js" $args
} else {
& "$basedir/node$exe" "$basedir/../ua-parser-js/script/cli.js" $args
}
$ret=$LASTEXITCODE
} else {
# Support pipeline input
if ($MyInvocation.ExpectingInput) {
$input | & "node$exe" "$basedir/../ua-parser-js/script/cli.js" $args
} else {
& "node$exe" "$basedir/../ua-parser-js/script/cli.js" $args
}
$ret=$LASTEXITCODE
}
exit $ret