pnpm 11.10.0 → 11.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1119 -0
- package/dist/node_modules/.bin/node-gyp +38 -0
- package/dist/node_modules/.bin/node-which +38 -0
- package/dist/node_modules/.bin/nopt +38 -0
- package/dist/node_modules/.bin/semver +38 -0
- package/dist/node_modules/.package-map.json +1 -1
- package/dist/pnpm.mjs +4645 -3863
- package/package.json +115 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
basedir_win="$basedir"
|
|
4
|
+
exe=""
|
|
5
|
+
msys=""
|
|
6
|
+
|
|
7
|
+
case `uname -a` in
|
|
8
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
9
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
10
|
+
basedir_win=`cygpath -w "$basedir"`
|
|
11
|
+
fi
|
|
12
|
+
exe=".exe"
|
|
13
|
+
msys="true"
|
|
14
|
+
;;
|
|
15
|
+
*WSL2*)
|
|
16
|
+
if command -v wslpath > /dev/null 2>&1; then
|
|
17
|
+
basedir_win="$(wslpath -w "$basedir" 2> /dev/null)"
|
|
18
|
+
if [ $? -ne 0 ] || [ -z "$basedir_win" ]; then
|
|
19
|
+
basedir_win="$basedir"
|
|
20
|
+
else
|
|
21
|
+
exe=".exe"
|
|
22
|
+
fi
|
|
23
|
+
fi
|
|
24
|
+
;;
|
|
25
|
+
esac
|
|
26
|
+
|
|
27
|
+
if [ -n "$exe" ] && [ -x "$basedir/node.exe" ]; then
|
|
28
|
+
exec "$basedir/node.exe" "$basedir_win/../node-gyp/bin/node-gyp.js" "$@"
|
|
29
|
+
elif [ -x "$basedir/node" ]; then
|
|
30
|
+
exec "$basedir/node" "$basedir/../node-gyp/bin/node-gyp.js" "$@"
|
|
31
|
+
elif command -v node >/dev/null 2>&1; then
|
|
32
|
+
exec node "$basedir/../node-gyp/bin/node-gyp.js" "$@"
|
|
33
|
+
elif [ -n "$exe" ] && command -v node.exe >/dev/null 2>&1; then
|
|
34
|
+
exec node.exe "$basedir_win/../node-gyp/bin/node-gyp.js" "$@"
|
|
35
|
+
else
|
|
36
|
+
exec node "$basedir/../node-gyp/bin/node-gyp.js" "$@"
|
|
37
|
+
fi
|
|
38
|
+
# cmd-shim-target=/Users/runner/work/pnpm/pnpm/pnpm11/pnpm/temp-deploy/node_modules/node-gyp/./bin/node-gyp.js
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
basedir_win="$basedir"
|
|
4
|
+
exe=""
|
|
5
|
+
msys=""
|
|
6
|
+
|
|
7
|
+
case `uname -a` in
|
|
8
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
9
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
10
|
+
basedir_win=`cygpath -w "$basedir"`
|
|
11
|
+
fi
|
|
12
|
+
exe=".exe"
|
|
13
|
+
msys="true"
|
|
14
|
+
;;
|
|
15
|
+
*WSL2*)
|
|
16
|
+
if command -v wslpath > /dev/null 2>&1; then
|
|
17
|
+
basedir_win="$(wslpath -w "$basedir" 2> /dev/null)"
|
|
18
|
+
if [ $? -ne 0 ] || [ -z "$basedir_win" ]; then
|
|
19
|
+
basedir_win="$basedir"
|
|
20
|
+
else
|
|
21
|
+
exe=".exe"
|
|
22
|
+
fi
|
|
23
|
+
fi
|
|
24
|
+
;;
|
|
25
|
+
esac
|
|
26
|
+
|
|
27
|
+
if [ -n "$exe" ] && [ -x "$basedir/node.exe" ]; then
|
|
28
|
+
exec "$basedir/node.exe" "$basedir_win/../which/bin/which.js" "$@"
|
|
29
|
+
elif [ -x "$basedir/node" ]; then
|
|
30
|
+
exec "$basedir/node" "$basedir/../which/bin/which.js" "$@"
|
|
31
|
+
elif command -v node >/dev/null 2>&1; then
|
|
32
|
+
exec node "$basedir/../which/bin/which.js" "$@"
|
|
33
|
+
elif [ -n "$exe" ] && command -v node.exe >/dev/null 2>&1; then
|
|
34
|
+
exec node.exe "$basedir_win/../which/bin/which.js" "$@"
|
|
35
|
+
else
|
|
36
|
+
exec node "$basedir/../which/bin/which.js" "$@"
|
|
37
|
+
fi
|
|
38
|
+
# cmd-shim-target=/Users/runner/work/pnpm/pnpm/pnpm11/pnpm/temp-deploy/node_modules/which/./bin/which.js
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
basedir_win="$basedir"
|
|
4
|
+
exe=""
|
|
5
|
+
msys=""
|
|
6
|
+
|
|
7
|
+
case `uname -a` in
|
|
8
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
9
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
10
|
+
basedir_win=`cygpath -w "$basedir"`
|
|
11
|
+
fi
|
|
12
|
+
exe=".exe"
|
|
13
|
+
msys="true"
|
|
14
|
+
;;
|
|
15
|
+
*WSL2*)
|
|
16
|
+
if command -v wslpath > /dev/null 2>&1; then
|
|
17
|
+
basedir_win="$(wslpath -w "$basedir" 2> /dev/null)"
|
|
18
|
+
if [ $? -ne 0 ] || [ -z "$basedir_win" ]; then
|
|
19
|
+
basedir_win="$basedir"
|
|
20
|
+
else
|
|
21
|
+
exe=".exe"
|
|
22
|
+
fi
|
|
23
|
+
fi
|
|
24
|
+
;;
|
|
25
|
+
esac
|
|
26
|
+
|
|
27
|
+
if [ -n "$exe" ] && [ -x "$basedir/node.exe" ]; then
|
|
28
|
+
exec "$basedir/node.exe" "$basedir_win/../nopt/bin/nopt.js" "$@"
|
|
29
|
+
elif [ -x "$basedir/node" ]; then
|
|
30
|
+
exec "$basedir/node" "$basedir/../nopt/bin/nopt.js" "$@"
|
|
31
|
+
elif command -v node >/dev/null 2>&1; then
|
|
32
|
+
exec node "$basedir/../nopt/bin/nopt.js" "$@"
|
|
33
|
+
elif [ -n "$exe" ] && command -v node.exe >/dev/null 2>&1; then
|
|
34
|
+
exec node.exe "$basedir_win/../nopt/bin/nopt.js" "$@"
|
|
35
|
+
else
|
|
36
|
+
exec node "$basedir/../nopt/bin/nopt.js" "$@"
|
|
37
|
+
fi
|
|
38
|
+
# cmd-shim-target=/Users/runner/work/pnpm/pnpm/pnpm11/pnpm/temp-deploy/node_modules/nopt/bin/nopt.js
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
basedir_win="$basedir"
|
|
4
|
+
exe=""
|
|
5
|
+
msys=""
|
|
6
|
+
|
|
7
|
+
case `uname -a` in
|
|
8
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
9
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
10
|
+
basedir_win=`cygpath -w "$basedir"`
|
|
11
|
+
fi
|
|
12
|
+
exe=".exe"
|
|
13
|
+
msys="true"
|
|
14
|
+
;;
|
|
15
|
+
*WSL2*)
|
|
16
|
+
if command -v wslpath > /dev/null 2>&1; then
|
|
17
|
+
basedir_win="$(wslpath -w "$basedir" 2> /dev/null)"
|
|
18
|
+
if [ $? -ne 0 ] || [ -z "$basedir_win" ]; then
|
|
19
|
+
basedir_win="$basedir"
|
|
20
|
+
else
|
|
21
|
+
exe=".exe"
|
|
22
|
+
fi
|
|
23
|
+
fi
|
|
24
|
+
;;
|
|
25
|
+
esac
|
|
26
|
+
|
|
27
|
+
if [ -n "$exe" ] && [ -x "$basedir/node.exe" ]; then
|
|
28
|
+
exec "$basedir/node.exe" "$basedir_win/../semver/bin/semver.js" "$@"
|
|
29
|
+
elif [ -x "$basedir/node" ]; then
|
|
30
|
+
exec "$basedir/node" "$basedir/../semver/bin/semver.js" "$@"
|
|
31
|
+
elif command -v node >/dev/null 2>&1; then
|
|
32
|
+
exec node "$basedir/../semver/bin/semver.js" "$@"
|
|
33
|
+
elif [ -n "$exe" ] && command -v node.exe >/dev/null 2>&1; then
|
|
34
|
+
exec node.exe "$basedir_win/../semver/bin/semver.js" "$@"
|
|
35
|
+
else
|
|
36
|
+
exec node "$basedir/../semver/bin/semver.js" "$@"
|
|
37
|
+
fi
|
|
38
|
+
# cmd-shim-target=/Users/runner/work/pnpm/pnpm/pnpm11/pnpm/temp-deploy/node_modules/semver/bin/semver.js
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"packages":{".":{"url":"..","dependencies":{"@
|
|
1
|
+
{"packages":{".":{"url":"..","dependencies":{"@reflink/reflink":"@reflink/reflink","node-gyp":"node-gyp","pnpm":".","v8-compile-cache":"v8-compile-cache"}},"@isaacs/fs-minipass":{"url":"./@isaacs/fs-minipass","dependencies":{"@isaacs/fs-minipass":"@isaacs/fs-minipass","minipass":"minipass"}},"@reflink/reflink":{"url":"./@reflink/reflink","dependencies":{"@reflink/reflink":"@reflink/reflink","@reflink/reflink-darwin-arm64":"@reflink/reflink-darwin-arm64","@reflink/reflink-darwin-x64":"@reflink/reflink-darwin-x64","@reflink/reflink-win32-arm64-msvc":"@reflink/reflink-win32-arm64-msvc","@reflink/reflink-win32-x64-msvc":"@reflink/reflink-win32-x64-msvc"}},"@reflink/reflink-darwin-arm64":{"url":"./@reflink/reflink-darwin-arm64","dependencies":{"@reflink/reflink-darwin-arm64":"@reflink/reflink-darwin-arm64"}},"@reflink/reflink-darwin-x64":{"url":"./@reflink/reflink-darwin-x64","dependencies":{"@reflink/reflink-darwin-x64":"@reflink/reflink-darwin-x64"}},"@reflink/reflink-win32-arm64-msvc":{"url":"./@reflink/reflink-win32-arm64-msvc","dependencies":{"@reflink/reflink-win32-arm64-msvc":"@reflink/reflink-win32-arm64-msvc"}},"@reflink/reflink-win32-x64-msvc":{"url":"./@reflink/reflink-win32-x64-msvc","dependencies":{"@reflink/reflink-win32-x64-msvc":"@reflink/reflink-win32-x64-msvc"}},"abbrev":{"url":"./abbrev","dependencies":{"abbrev":"abbrev"}},"chownr":{"url":"./chownr","dependencies":{"chownr":"chownr"}},"env-paths":{"url":"./env-paths","dependencies":{"env-paths":"env-paths"}},"exponential-backoff":{"url":"./exponential-backoff","dependencies":{"exponential-backoff":"exponential-backoff"}},"fdir":{"url":"./fdir","dependencies":{"fdir":"fdir","picomatch":"picomatch"}},"graceful-fs":{"url":"./graceful-fs","dependencies":{"graceful-fs":"graceful-fs"}},"isexe":{"url":"./isexe","dependencies":{"isexe":"isexe"}},"minipass":{"url":"./minipass","dependencies":{"minipass":"minipass"}},"minizlib":{"url":"./minizlib","dependencies":{"minipass":"minipass","minizlib":"minizlib"}},"node-gyp":{"url":"./node-gyp","dependencies":{"env-paths":"env-paths","exponential-backoff":"exponential-backoff","graceful-fs":"graceful-fs","node-gyp":"node-gyp","nopt":"nopt","proc-log":"proc-log","semver":"semver","tar":"tar","tinyglobby":"tinyglobby","undici":"undici","which":"which"}},"nopt":{"url":"./nopt","dependencies":{"abbrev":"abbrev","nopt":"nopt"}},"picomatch":{"url":"./picomatch","dependencies":{"picomatch":"picomatch"}},"proc-log":{"url":"./proc-log","dependencies":{"proc-log":"proc-log"}},"semver":{"url":"./semver","dependencies":{"semver":"semver"}},"tar":{"url":"./tar","dependencies":{"@isaacs/fs-minipass":"@isaacs/fs-minipass","chownr":"chownr","minipass":"minipass","minizlib":"minizlib","tar":"tar","yallist":"yallist"}},"tinyglobby":{"url":"./tinyglobby","dependencies":{"fdir":"fdir","picomatch":"picomatch","tinyglobby":"tinyglobby"}},"undici":{"url":"./undici","dependencies":{"undici":"undici"}},"v8-compile-cache":{"url":"./v8-compile-cache","dependencies":{"v8-compile-cache":"v8-compile-cache"}},"which":{"url":"./which","dependencies":{"isexe":"isexe","which":"which"}},"yallist":{"url":"./yallist","dependencies":{"yallist":"yallist"}}}}
|