/home2/dakshskx/nodejs/lib/node_modules/corepack/shims
NameSizeModeActions
nodewin/-0755rm
corepack2840644editdlrm
corepack.cmd1800644editdlrm
corepack.ps17890644editdlrm
npm2740644editdlrm
npm.cmd1700644editdlrm
npm.ps17690644editdlrm
npx2740644editdlrm
npx.cmd1700644editdlrm
npx.ps17690644editdlrm
pnpm2760644editdlrm
pnpm.cmd1720644editdlrm
pnpm.ps17730644editdlrm
pnpx2760644editdlrm
pnpx.cmd1720644editdlrm
pnpx.ps17730644editdlrm
yarn2760644editdlrm
yarn.cmd1720644editdlrm
yarn.ps17730644editdlrm
yarnpkg2820644editdlrm
yarnpkg.cmd1780644editdlrm
yarnpkg.ps17850644editdlrm
Edit: /home2/dakshskx/nodejs/lib/node_modules/corepack/shims/corepack.ps1 (789B)
#!/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/../dist/corepack.js" $args } else { & "$basedir/node$exe" "$basedir/../dist/corepack.js" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & "node$exe" "$basedir/../dist/corepack.js" $args } else { & "node$exe" "$basedir/../dist/corepack.js" $args } $ret=$LASTEXITCODE } exit $ret