wishthis/node_modules/.bin/browserslist.ps1

19 lines
494 B
PowerShell
Raw Normal View History

2022-01-21 08:28:41 +00:00
#!/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") {
2022-02-23 16:41:13 +00:00
& "$basedir/node$exe" "$basedir/../browserslist/cli.js" $args
2022-01-21 08:28:41 +00:00
$ret=$LASTEXITCODE
} else {
2022-02-23 16:41:13 +00:00
& "node$exe" "$basedir/../browserslist/cli.js" $args
2022-01-21 08:28:41 +00:00
$ret=$LASTEXITCODE
}
exit $ret