X7ROOT File Manager
Current Path:
/opt/alt/alt-nodejs19/root/usr/lib/node_modules/corepack/shims
opt
/
alt
/
alt-nodejs19
/
root
/
usr
/
lib
/
node_modules
/
corepack
/
shims
/
ðŸ“
..
📄
corepack
(284 B)
📄
corepack.cmd
(180 B)
📄
corepack.ps1
(785 B)
ðŸ“
nodewin
📄
npm
(274 B)
📄
npm.cmd
(170 B)
📄
npm.ps1
(765 B)
📄
npx
(274 B)
📄
npx.cmd
(170 B)
📄
npx.ps1
(765 B)
📄
pnpm
(276 B)
📄
pnpm.cmd
(172 B)
📄
pnpm.ps1
(769 B)
📄
pnpx
(276 B)
📄
pnpx.cmd
(172 B)
📄
pnpx.ps1
(769 B)
📄
yarn
(276 B)
📄
yarn.cmd
(172 B)
📄
yarn.ps1
(769 B)
📄
yarnpkg
(282 B)
📄
yarnpkg.cmd
(178 B)
📄
yarnpkg.ps1
(781 B)
Editing: pnpm.ps1
#!/usr/bin/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/pnpm.js" $args } else { & "$basedir/node$exe" "$basedir/../dist/pnpm.js" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & "node$exe" "$basedir/../dist/pnpm.js" $args } else { & "node$exe" "$basedir/../dist/pnpm.js" $args } $ret=$LASTEXITCODE } exit $ret
Upload File
Create Folder