mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 14:33:11 +01:00
46598b88bf
Corepack provides shims for Yarn and pnpm in order to soften the developer experience when working on Node projects. Refs: https://github.com/nodejs/node/issues/15244 Refs: https://github.com/nodejs/TSC/issues/904 PR-URL: https://github.com/nodejs/node/pull/39608 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
29 lines
861 B
PowerShell
29 lines
861 B
PowerShell
#!/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/node_modules/corepack/dist/yarnpkg.js" $args
|
|
} else {
|
|
& "$basedir/node$exe" "$basedir/node_modules/corepack/dist/yarnpkg.js" $args
|
|
}
|
|
$ret=$LASTEXITCODE
|
|
} else {
|
|
# Support pipeline input
|
|
if ($MyInvocation.ExpectingInput) {
|
|
$input | & "node$exe" "$basedir/node_modules/corepack/dist/yarnpkg.js" $args
|
|
} else {
|
|
& "node$exe" "$basedir/node_modules/corepack/dist/yarnpkg.js" $args
|
|
}
|
|
$ret=$LASTEXITCODE
|
|
}
|
|
exit $ret
|