@pnpm/exe 11.0.6 → 11.0.8
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/dist/node-gyp-bin/node-gyp +0 -0
- package/dist/node-gyp-bin/node-gyp.cmd +0 -0
- package/dist/node_modules/node-gyp/.release-please-manifest.json +1 -1
- package/dist/node_modules/node-gyp/bin/node-gyp.js +0 -0
- package/dist/node_modules/node-gyp/gyp/.release-please-manifest.json +1 -1
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +11 -3
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +2 -3
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +1 -1
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2 -1
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +26 -16
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +1 -1
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1 -1
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +2 -2
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +3 -20
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/tags.py +2 -14
- package/dist/node_modules/node-gyp/gyp/pyproject.toml +5 -3
- package/dist/node_modules/node-gyp/lib/download.js +55 -8
- package/dist/node_modules/node-gyp/lib/find-visualstudio.js +1 -1
- package/dist/node_modules/node-gyp/lib/process-release.js +17 -19
- package/dist/node_modules/node-gyp/package.json +3 -3
- package/dist/node_modules/{safer-buffer → undici}/LICENSE +1 -1
- package/dist/node_modules/undici/index-fetch.js +35 -0
- package/dist/node_modules/undici/index.js +169 -0
- package/dist/node_modules/undici/lib/api/abort-signal.js +57 -0
- package/dist/node_modules/undici/lib/api/api-connect.js +108 -0
- package/dist/node_modules/undici/lib/api/api-pipeline.js +251 -0
- package/dist/node_modules/undici/lib/api/api-request.js +214 -0
- package/dist/node_modules/undici/lib/api/api-stream.js +220 -0
- package/dist/node_modules/undici/lib/api/api-upgrade.js +108 -0
- package/dist/node_modules/undici/lib/api/index.js +7 -0
- package/dist/node_modules/undici/lib/api/readable.js +385 -0
- package/dist/node_modules/undici/lib/api/util.js +93 -0
- package/dist/node_modules/undici/lib/core/connect.js +240 -0
- package/dist/node_modules/undici/lib/core/constants.js +118 -0
- package/dist/node_modules/undici/lib/core/diagnostics.js +202 -0
- package/dist/node_modules/undici/lib/core/errors.js +425 -0
- package/dist/node_modules/undici/lib/core/request.js +405 -0
- package/dist/node_modules/undici/lib/core/symbols.js +67 -0
- package/dist/node_modules/undici/lib/core/tree.js +152 -0
- package/dist/node_modules/undici/lib/core/util.js +719 -0
- package/dist/node_modules/undici/lib/dispatcher/agent.js +130 -0
- package/dist/node_modules/undici/lib/dispatcher/balanced-pool.js +209 -0
- package/dist/node_modules/undici/lib/dispatcher/client-h1.js +1370 -0
- package/dist/node_modules/undici/lib/dispatcher/client-h2.js +744 -0
- package/dist/node_modules/undici/lib/dispatcher/client.js +623 -0
- package/dist/node_modules/undici/lib/dispatcher/dispatcher-base.js +198 -0
- package/dist/node_modules/undici/lib/dispatcher/dispatcher.js +65 -0
- package/dist/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +160 -0
- package/dist/node_modules/undici/lib/dispatcher/fixed-queue.js +117 -0
- package/dist/node_modules/undici/lib/dispatcher/pool-base.js +194 -0
- package/dist/node_modules/undici/lib/dispatcher/pool-stats.js +34 -0
- package/dist/node_modules/undici/lib/dispatcher/pool.js +107 -0
- package/dist/node_modules/undici/lib/dispatcher/proxy-agent.js +274 -0
- package/dist/node_modules/undici/lib/dispatcher/retry-agent.js +35 -0
- package/dist/node_modules/undici/lib/global.js +32 -0
- package/dist/node_modules/undici/lib/handler/decorator-handler.js +44 -0
- package/dist/node_modules/undici/lib/handler/redirect-handler.js +232 -0
- package/dist/node_modules/undici/lib/handler/retry-handler.js +374 -0
- package/dist/node_modules/undici/lib/interceptor/dns.js +375 -0
- package/dist/node_modules/undici/lib/interceptor/dump.js +123 -0
- package/dist/node_modules/undici/lib/interceptor/redirect-interceptor.js +21 -0
- package/dist/node_modules/undici/lib/interceptor/redirect.js +24 -0
- package/dist/node_modules/undici/lib/interceptor/response-error.js +86 -0
- package/dist/node_modules/undici/lib/interceptor/retry.js +19 -0
- package/dist/node_modules/undici/lib/llhttp/.gitkeep +0 -0
- package/dist/node_modules/undici/lib/llhttp/constants.js +278 -0
- package/dist/node_modules/undici/lib/llhttp/llhttp-wasm.js +5 -0
- package/dist/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +5 -0
- package/dist/node_modules/undici/lib/llhttp/utils.js +15 -0
- package/dist/node_modules/undici/lib/mock/mock-agent.js +160 -0
- package/dist/node_modules/undici/lib/mock/mock-client.js +59 -0
- package/dist/node_modules/undici/lib/mock/mock-errors.js +28 -0
- package/dist/node_modules/undici/lib/mock/mock-interceptor.js +207 -0
- package/dist/node_modules/undici/lib/mock/mock-pool.js +59 -0
- package/dist/node_modules/undici/lib/mock/mock-symbols.js +23 -0
- package/dist/node_modules/undici/lib/mock/mock-utils.js +367 -0
- package/dist/node_modules/undici/lib/mock/pending-interceptors-formatter.js +43 -0
- package/dist/node_modules/undici/lib/mock/pluralizer.js +29 -0
- package/dist/node_modules/undici/lib/util/timers.js +423 -0
- package/dist/node_modules/undici/lib/web/cache/cache.js +859 -0
- package/dist/node_modules/undici/lib/web/cache/cachestorage.js +152 -0
- package/dist/node_modules/undici/lib/web/cache/symbols.js +5 -0
- package/dist/node_modules/undici/lib/web/cache/util.js +45 -0
- package/dist/node_modules/undici/lib/web/cookies/constants.js +12 -0
- package/dist/node_modules/undici/lib/web/cookies/index.js +184 -0
- package/dist/node_modules/undici/lib/web/cookies/parse.js +317 -0
- package/dist/node_modules/undici/lib/web/cookies/util.js +282 -0
- package/dist/node_modules/undici/lib/web/eventsource/eventsource-stream.js +398 -0
- package/dist/node_modules/undici/lib/web/eventsource/eventsource.js +480 -0
- package/dist/node_modules/undici/lib/web/eventsource/util.js +37 -0
- package/dist/node_modules/{@npmcli/redact → undici/lib/web/fetch}/LICENSE +1 -1
- package/dist/node_modules/undici/lib/web/fetch/body.js +529 -0
- package/dist/node_modules/undici/lib/web/fetch/constants.js +124 -0
- package/dist/node_modules/undici/lib/web/fetch/data-url.js +744 -0
- package/dist/node_modules/undici/lib/web/fetch/dispatcher-weakref.js +46 -0
- package/dist/node_modules/undici/lib/web/fetch/file.js +126 -0
- package/dist/node_modules/undici/lib/web/fetch/formdata-parser.js +474 -0
- package/dist/node_modules/undici/lib/web/fetch/formdata.js +252 -0
- package/dist/node_modules/undici/lib/web/fetch/global.js +40 -0
- package/dist/node_modules/undici/lib/web/fetch/headers.js +687 -0
- package/dist/node_modules/undici/lib/web/fetch/index.js +2272 -0
- package/dist/node_modules/undici/lib/web/fetch/request.js +1037 -0
- package/dist/node_modules/undici/lib/web/fetch/response.js +610 -0
- package/dist/node_modules/undici/lib/web/fetch/symbols.js +9 -0
- package/dist/node_modules/undici/lib/web/fetch/util.js +1632 -0
- package/dist/node_modules/undici/lib/web/fetch/webidl.js +695 -0
- package/dist/node_modules/undici/lib/web/fileapi/encoding.js +290 -0
- package/dist/node_modules/undici/lib/web/fileapi/filereader.js +344 -0
- package/dist/node_modules/undici/lib/web/fileapi/progressevent.js +78 -0
- package/dist/node_modules/undici/lib/web/fileapi/symbols.js +10 -0
- package/dist/node_modules/undici/lib/web/fileapi/util.js +391 -0
- package/dist/node_modules/undici/lib/web/websocket/connection.js +371 -0
- package/dist/node_modules/undici/lib/web/websocket/constants.js +66 -0
- package/dist/node_modules/undici/lib/web/websocket/events.js +329 -0
- package/dist/node_modules/undici/lib/web/websocket/frame.js +96 -0
- package/dist/node_modules/undici/lib/web/websocket/permessage-deflate.js +100 -0
- package/dist/node_modules/undici/lib/web/websocket/receiver.js +490 -0
- package/dist/node_modules/undici/lib/web/websocket/sender.js +104 -0
- package/dist/node_modules/undici/lib/web/websocket/symbols.js +12 -0
- package/dist/node_modules/undici/lib/web/websocket/util.js +322 -0
- package/dist/node_modules/undici/lib/web/websocket/websocket.js +592 -0
- package/dist/node_modules/undici/package.json +160 -0
- package/dist/node_modules/undici/scripts/strip-comments.js +8 -0
- package/dist/node_modules/yallist/package.json +51 -12
- package/dist/pnpm.mjs +4529 -3898
- package/dist/worker.js +76 -73
- package/package.json +21 -13
- package/setup.js +17 -3
- package/dist/node_modules/@gar/promise-retry/LICENSE +0 -20
- package/dist/node_modules/@gar/promise-retry/lib/index.js +0 -62
- package/dist/node_modules/@gar/promise-retry/lib/retry.js +0 -109
- package/dist/node_modules/@gar/promise-retry/package.json +0 -45
- package/dist/node_modules/@npmcli/agent/lib/agents.js +0 -206
- package/dist/node_modules/@npmcli/agent/lib/dns.js +0 -53
- package/dist/node_modules/@npmcli/agent/lib/errors.js +0 -61
- package/dist/node_modules/@npmcli/agent/lib/index.js +0 -56
- package/dist/node_modules/@npmcli/agent/lib/options.js +0 -86
- package/dist/node_modules/@npmcli/agent/lib/proxy.js +0 -88
- package/dist/node_modules/@npmcli/agent/package.json +0 -60
- package/dist/node_modules/@npmcli/fs/lib/common/get-options.js +0 -20
- package/dist/node_modules/@npmcli/fs/lib/common/node.js +0 -9
- package/dist/node_modules/@npmcli/fs/lib/cp/LICENSE +0 -15
- package/dist/node_modules/@npmcli/fs/lib/cp/errors.js +0 -129
- package/dist/node_modules/@npmcli/fs/lib/cp/index.js +0 -22
- package/dist/node_modules/@npmcli/fs/lib/cp/polyfill.js +0 -428
- package/dist/node_modules/@npmcli/fs/lib/index.js +0 -13
- package/dist/node_modules/@npmcli/fs/lib/move-file.js +0 -78
- package/dist/node_modules/@npmcli/fs/lib/readdir-scoped.js +0 -20
- package/dist/node_modules/@npmcli/fs/lib/with-temp-dir.js +0 -39
- package/dist/node_modules/@npmcli/fs/package.json +0 -54
- package/dist/node_modules/@npmcli/redact/lib/deep-map.js +0 -71
- package/dist/node_modules/@npmcli/redact/lib/error.js +0 -28
- package/dist/node_modules/@npmcli/redact/lib/index.js +0 -44
- package/dist/node_modules/@npmcli/redact/lib/matchers.js +0 -88
- package/dist/node_modules/@npmcli/redact/lib/server.js +0 -59
- package/dist/node_modules/@npmcli/redact/lib/utils.js +0 -202
- package/dist/node_modules/@npmcli/redact/package.json +0 -52
- package/dist/node_modules/agent-base/LICENSE +0 -22
- package/dist/node_modules/agent-base/dist/helpers.js +0 -66
- package/dist/node_modules/agent-base/dist/index.js +0 -178
- package/dist/node_modules/agent-base/package.json +0 -46
- package/dist/node_modules/balanced-match/dist/commonjs/index.js +0 -59
- package/dist/node_modules/balanced-match/dist/esm/index.js +0 -54
- package/dist/node_modules/balanced-match/package.json +0 -68
- package/dist/node_modules/brace-expansion/LICENSE +0 -23
- package/dist/node_modules/brace-expansion/dist/commonjs/index.js +0 -201
- package/dist/node_modules/brace-expansion/dist/commonjs/package.json +0 -3
- package/dist/node_modules/brace-expansion/dist/esm/index.js +0 -197
- package/dist/node_modules/brace-expansion/dist/esm/package.json +0 -3
- package/dist/node_modules/brace-expansion/package.json +0 -64
- package/dist/node_modules/cacache/lib/content/path.js +0 -29
- package/dist/node_modules/cacache/lib/content/read.js +0 -165
- package/dist/node_modules/cacache/lib/content/rm.js +0 -18
- package/dist/node_modules/cacache/lib/content/write.js +0 -206
- package/dist/node_modules/cacache/lib/entry-index.js +0 -336
- package/dist/node_modules/cacache/lib/get.js +0 -170
- package/dist/node_modules/cacache/lib/index.js +0 -42
- package/dist/node_modules/cacache/lib/memoization.js +0 -72
- package/dist/node_modules/cacache/lib/put.js +0 -80
- package/dist/node_modules/cacache/lib/rm.js +0 -31
- package/dist/node_modules/cacache/lib/util/glob.js +0 -7
- package/dist/node_modules/cacache/lib/util/hash-to-segments.js +0 -7
- package/dist/node_modules/cacache/lib/util/tmp.js +0 -32
- package/dist/node_modules/cacache/lib/verify.js +0 -258
- package/dist/node_modules/cacache/package.json +0 -81
- package/dist/node_modules/debug/LICENSE +0 -20
- package/dist/node_modules/debug/package.json +0 -64
- package/dist/node_modules/debug/src/browser.js +0 -272
- package/dist/node_modules/debug/src/common.js +0 -292
- package/dist/node_modules/debug/src/index.js +0 -10
- package/dist/node_modules/debug/src/node.js +0 -263
- package/dist/node_modules/fs-minipass/LICENSE +0 -15
- package/dist/node_modules/fs-minipass/lib/index.js +0 -443
- package/dist/node_modules/fs-minipass/package.json +0 -54
- package/dist/node_modules/glob/dist/commonjs/glob.js +0 -248
- package/dist/node_modules/glob/dist/commonjs/has-magic.js +0 -27
- package/dist/node_modules/glob/dist/commonjs/ignore.js +0 -119
- package/dist/node_modules/glob/dist/commonjs/index.js +0 -68
- package/dist/node_modules/glob/dist/commonjs/index.min.js +0 -4
- package/dist/node_modules/glob/dist/commonjs/package.json +0 -3
- package/dist/node_modules/glob/dist/commonjs/pattern.js +0 -223
- package/dist/node_modules/glob/dist/commonjs/processor.js +0 -301
- package/dist/node_modules/glob/dist/commonjs/walker.js +0 -387
- package/dist/node_modules/glob/dist/esm/glob.js +0 -244
- package/dist/node_modules/glob/dist/esm/has-magic.js +0 -23
- package/dist/node_modules/glob/dist/esm/ignore.js +0 -115
- package/dist/node_modules/glob/dist/esm/index.js +0 -55
- package/dist/node_modules/glob/dist/esm/index.min.js +0 -4
- package/dist/node_modules/glob/dist/esm/package.json +0 -3
- package/dist/node_modules/glob/dist/esm/pattern.js +0 -219
- package/dist/node_modules/glob/dist/esm/processor.js +0 -294
- package/dist/node_modules/glob/dist/esm/walker.js +0 -381
- package/dist/node_modules/glob/package.json +0 -98
- package/dist/node_modules/http-cache-semantics/LICENSE +0 -9
- package/dist/node_modules/http-cache-semantics/index.js +0 -928
- package/dist/node_modules/http-cache-semantics/package.json +0 -22
- package/dist/node_modules/http-proxy-agent/LICENSE +0 -22
- package/dist/node_modules/http-proxy-agent/dist/index.js +0 -148
- package/dist/node_modules/http-proxy-agent/package.json +0 -47
- package/dist/node_modules/https-proxy-agent/LICENSE +0 -22
- package/dist/node_modules/https-proxy-agent/dist/index.js +0 -180
- package/dist/node_modules/https-proxy-agent/dist/parse-proxy-response.js +0 -101
- package/dist/node_modules/https-proxy-agent/package.json +0 -50
- package/dist/node_modules/iconv-lite/LICENSE +0 -21
- package/dist/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -532
- package/dist/node_modules/iconv-lite/encodings/dbcs-data.js +0 -185
- package/dist/node_modules/iconv-lite/encodings/index.js +0 -23
- package/dist/node_modules/iconv-lite/encodings/internal.js +0 -218
- package/dist/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -75
- package/dist/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
- package/dist/node_modules/iconv-lite/encodings/sbcs-data.js +0 -178
- package/dist/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
- package/dist/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
- package/dist/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
- package/dist/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
- package/dist/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
- package/dist/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
- package/dist/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -56
- package/dist/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
- package/dist/node_modules/iconv-lite/encodings/utf16.js +0 -187
- package/dist/node_modules/iconv-lite/encodings/utf32.js +0 -307
- package/dist/node_modules/iconv-lite/encodings/utf7.js +0 -283
- package/dist/node_modules/iconv-lite/lib/bom-handling.js +0 -48
- package/dist/node_modules/iconv-lite/lib/helpers/merge-exports.js +0 -13
- package/dist/node_modules/iconv-lite/lib/index.js +0 -182
- package/dist/node_modules/iconv-lite/lib/streams.js +0 -105
- package/dist/node_modules/iconv-lite/package.json +0 -70
- package/dist/node_modules/ip-address/LICENSE +0 -19
- package/dist/node_modules/ip-address/dist/address-error.js +0 -12
- package/dist/node_modules/ip-address/dist/common.js +0 -46
- package/dist/node_modules/ip-address/dist/ip-address.js +0 -35
- package/dist/node_modules/ip-address/dist/ipv4.js +0 -360
- package/dist/node_modules/ip-address/dist/ipv6.js +0 -1003
- package/dist/node_modules/ip-address/dist/v4/constants.js +0 -8
- package/dist/node_modules/ip-address/dist/v6/constants.js +0 -76
- package/dist/node_modules/ip-address/dist/v6/helpers.js +0 -45
- package/dist/node_modules/ip-address/dist/v6/regular-expressions.js +0 -95
- package/dist/node_modules/ip-address/package.json +0 -78
- package/dist/node_modules/lru-cache/dist/commonjs/diagnostics-channel.js +0 -10
- package/dist/node_modules/lru-cache/dist/commonjs/index.js +0 -1692
- package/dist/node_modules/lru-cache/dist/commonjs/index.min.js +0 -2
- package/dist/node_modules/lru-cache/dist/commonjs/package.json +0 -3
- package/dist/node_modules/lru-cache/dist/esm/browser/diagnostics-channel.js +0 -4
- package/dist/node_modules/lru-cache/dist/esm/browser/index.js +0 -1688
- package/dist/node_modules/lru-cache/dist/esm/browser/index.min.js +0 -2
- package/dist/node_modules/lru-cache/dist/esm/diagnostics-channel.js +0 -19
- package/dist/node_modules/lru-cache/dist/esm/index.js +0 -1688
- package/dist/node_modules/lru-cache/dist/esm/index.min.js +0 -2
- package/dist/node_modules/lru-cache/dist/esm/node/diagnostics-channel.js +0 -7
- package/dist/node_modules/lru-cache/dist/esm/node/index.js +0 -1688
- package/dist/node_modules/lru-cache/dist/esm/node/index.min.js +0 -2
- package/dist/node_modules/lru-cache/dist/esm/package.json +0 -3
- package/dist/node_modules/lru-cache/package.json +0 -126
- package/dist/node_modules/make-fetch-happen/LICENSE +0 -16
- package/dist/node_modules/make-fetch-happen/lib/cache/entry.js +0 -471
- package/dist/node_modules/make-fetch-happen/lib/cache/errors.js +0 -11
- package/dist/node_modules/make-fetch-happen/lib/cache/index.js +0 -49
- package/dist/node_modules/make-fetch-happen/lib/cache/key.js +0 -17
- package/dist/node_modules/make-fetch-happen/lib/cache/policy.js +0 -161
- package/dist/node_modules/make-fetch-happen/lib/fetch.js +0 -118
- package/dist/node_modules/make-fetch-happen/lib/index.js +0 -41
- package/dist/node_modules/make-fetch-happen/lib/options.js +0 -59
- package/dist/node_modules/make-fetch-happen/lib/pipeline.js +0 -41
- package/dist/node_modules/make-fetch-happen/lib/remote.js +0 -134
- package/dist/node_modules/make-fetch-happen/package.json +0 -75
- package/dist/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +0 -14
- package/dist/node_modules/minimatch/dist/commonjs/ast.js +0 -845
- package/dist/node_modules/minimatch/dist/commonjs/brace-expressions.js +0 -150
- package/dist/node_modules/minimatch/dist/commonjs/escape.js +0 -30
- package/dist/node_modules/minimatch/dist/commonjs/index.js +0 -1127
- package/dist/node_modules/minimatch/dist/commonjs/package.json +0 -3
- package/dist/node_modules/minimatch/dist/commonjs/unescape.js +0 -38
- package/dist/node_modules/minimatch/dist/esm/assert-valid-pattern.js +0 -10
- package/dist/node_modules/minimatch/dist/esm/ast.js +0 -841
- package/dist/node_modules/minimatch/dist/esm/brace-expressions.js +0 -146
- package/dist/node_modules/minimatch/dist/esm/escape.js +0 -26
- package/dist/node_modules/minimatch/dist/esm/index.js +0 -1114
- package/dist/node_modules/minimatch/dist/esm/package.json +0 -3
- package/dist/node_modules/minimatch/dist/esm/unescape.js +0 -34
- package/dist/node_modules/minimatch/package.json +0 -73
- package/dist/node_modules/minipass-collect/LICENSE +0 -15
- package/dist/node_modules/minipass-collect/index.js +0 -71
- package/dist/node_modules/minipass-collect/package.json +0 -30
- package/dist/node_modules/minipass-fetch/LICENSE +0 -28
- package/dist/node_modules/minipass-fetch/lib/abort-error.js +0 -17
- package/dist/node_modules/minipass-fetch/lib/blob.js +0 -97
- package/dist/node_modules/minipass-fetch/lib/body.js +0 -360
- package/dist/node_modules/minipass-fetch/lib/fetch-error.js +0 -32
- package/dist/node_modules/minipass-fetch/lib/headers.js +0 -267
- package/dist/node_modules/minipass-fetch/lib/index.js +0 -376
- package/dist/node_modules/minipass-fetch/lib/request.js +0 -282
- package/dist/node_modules/minipass-fetch/lib/response.js +0 -90
- package/dist/node_modules/minipass-fetch/package.json +0 -70
- package/dist/node_modules/minipass-flush/index.js +0 -39
- package/dist/node_modules/minipass-flush/node_modules/minipass/LICENSE +0 -15
- package/dist/node_modules/minipass-flush/node_modules/minipass/index.js +0 -649
- package/dist/node_modules/minipass-flush/node_modules/minipass/package.json +0 -56
- package/dist/node_modules/minipass-flush/package.json +0 -42
- package/dist/node_modules/minipass-pipeline/LICENSE +0 -15
- package/dist/node_modules/minipass-pipeline/index.js +0 -128
- package/dist/node_modules/minipass-pipeline/node_modules/minipass/LICENSE +0 -15
- package/dist/node_modules/minipass-pipeline/node_modules/minipass/index.js +0 -649
- package/dist/node_modules/minipass-pipeline/node_modules/minipass/package.json +0 -56
- package/dist/node_modules/minipass-pipeline/package.json +0 -29
- package/dist/node_modules/minipass-sized/LICENSE +0 -15
- package/dist/node_modules/minipass-sized/dist/commonjs/index.js +0 -69
- package/dist/node_modules/minipass-sized/dist/commonjs/package.json +0 -3
- package/dist/node_modules/minipass-sized/dist/esm/index.js +0 -64
- package/dist/node_modules/minipass-sized/dist/esm/package.json +0 -3
- package/dist/node_modules/minipass-sized/package.json +0 -69
- package/dist/node_modules/ms/index.js +0 -162
- package/dist/node_modules/ms/package.json +0 -38
- package/dist/node_modules/negotiator/LICENSE +0 -24
- package/dist/node_modules/negotiator/index.js +0 -83
- package/dist/node_modules/negotiator/lib/charset.js +0 -169
- package/dist/node_modules/negotiator/lib/encoding.js +0 -205
- package/dist/node_modules/negotiator/lib/language.js +0 -179
- package/dist/node_modules/negotiator/lib/mediaType.js +0 -294
- package/dist/node_modules/negotiator/package.json +0 -43
- package/dist/node_modules/p-map/index.js +0 -283
- package/dist/node_modules/p-map/license +0 -9
- package/dist/node_modules/p-map/package.json +0 -57
- package/dist/node_modules/path-scurry/dist/commonjs/index.js +0 -2018
- package/dist/node_modules/path-scurry/dist/commonjs/package.json +0 -3
- package/dist/node_modules/path-scurry/dist/esm/index.js +0 -1983
- package/dist/node_modules/path-scurry/dist/esm/package.json +0 -3
- package/dist/node_modules/path-scurry/package.json +0 -72
- package/dist/node_modules/safer-buffer/dangerous.js +0 -58
- package/dist/node_modules/safer-buffer/package.json +0 -34
- package/dist/node_modules/safer-buffer/safer.js +0 -77
- package/dist/node_modules/safer-buffer/tests.js +0 -406
- package/dist/node_modules/smart-buffer/.prettierrc.yaml +0 -5
- package/dist/node_modules/smart-buffer/LICENSE +0 -20
- package/dist/node_modules/smart-buffer/build/smartbuffer.js +0 -1233
- package/dist/node_modules/smart-buffer/build/utils.js +0 -108
- package/dist/node_modules/smart-buffer/package.json +0 -79
- package/dist/node_modules/socks/.eslintrc.cjs +0 -11
- package/dist/node_modules/socks/.prettierrc.yaml +0 -7
- package/dist/node_modules/socks/LICENSE +0 -20
- package/dist/node_modules/socks/build/client/socksclient.js +0 -793
- package/dist/node_modules/socks/build/common/constants.js +0 -108
- package/dist/node_modules/socks/build/common/helpers.js +0 -167
- package/dist/node_modules/socks/build/common/receivebuffer.js +0 -43
- package/dist/node_modules/socks/build/common/util.js +0 -25
- package/dist/node_modules/socks/build/index.js +0 -18
- package/dist/node_modules/socks/package.json +0 -58
- package/dist/node_modules/socks-proxy-agent/LICENSE +0 -22
- package/dist/node_modules/socks-proxy-agent/dist/index.js +0 -195
- package/dist/node_modules/socks-proxy-agent/package.json +0 -142
- package/dist/node_modules/ssri/lib/index.js +0 -550
- package/dist/node_modules/ssri/package.json +0 -66
- package/dist/node_modules/tar/node_modules/yallist/dist/commonjs/package.json +0 -3
- package/dist/node_modules/tar/node_modules/yallist/dist/esm/package.json +0 -3
- package/dist/node_modules/tar/node_modules/yallist/package.json +0 -68
- package/dist/node_modules/yallist/LICENSE +0 -15
- package/dist/node_modules/yallist/iterator.js +0 -8
- package/dist/node_modules/yallist/yallist.js +0 -426
- /package/dist/node_modules/{tar/node_modules/yallist → yallist}/dist/commonjs/index.js +0 -0
- /package/dist/node_modules/{balanced-match → yallist}/dist/commonjs/package.json +0 -0
- /package/dist/node_modules/{tar/node_modules/yallist → yallist}/dist/esm/index.js +0 -0
- /package/dist/node_modules/{balanced-match → yallist}/dist/esm/package.json +0 -0
package/dist/worker.js
CHANGED
|
@@ -1107,9 +1107,9 @@ var require_individual = __commonJS({
|
|
|
1107
1107
|
}
|
|
1108
1108
|
});
|
|
1109
1109
|
|
|
1110
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/bole/5.0.
|
|
1110
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/bole/5.0.29/6922e0a3a11b46fb67db71b821bacb20a87db33d8d1fb079a84a148dc6373834/node_modules/bole/format.js
|
|
1111
1111
|
var require_format = __commonJS({
|
|
1112
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/bole/5.0.
|
|
1112
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/bole/5.0.29/6922e0a3a11b46fb67db71b821bacb20a87db33d8d1fb079a84a148dc6373834/node_modules/bole/format.js"(exports, module) {
|
|
1113
1113
|
var utilformat = __require("util").format;
|
|
1114
1114
|
function format(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16) {
|
|
1115
1115
|
if (a16 !== void 0) {
|
|
@@ -1163,9 +1163,9 @@ var require_format = __commonJS({
|
|
|
1163
1163
|
}
|
|
1164
1164
|
});
|
|
1165
1165
|
|
|
1166
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/bole/5.0.
|
|
1166
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/bole/5.0.29/6922e0a3a11b46fb67db71b821bacb20a87db33d8d1fb079a84a148dc6373834/node_modules/bole/bole.js
|
|
1167
1167
|
var require_bole = __commonJS({
|
|
1168
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/bole/5.0.
|
|
1168
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/bole/5.0.29/6922e0a3a11b46fb67db71b821bacb20a87db33d8d1fb079a84a148dc6373834/node_modules/bole/bole.js"(exports, module) {
|
|
1169
1169
|
"use strict";
|
|
1170
1170
|
var _stringify = require_fast_safe_stringify();
|
|
1171
1171
|
var individual = require_individual()("$$bole", { fastTime: false });
|
|
@@ -1495,9 +1495,9 @@ var require_universalify = __commonJS({
|
|
|
1495
1495
|
}
|
|
1496
1496
|
});
|
|
1497
1497
|
|
|
1498
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1498
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/fs/index.js
|
|
1499
1499
|
var require_fs = __commonJS({
|
|
1500
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1500
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/fs/index.js"(exports) {
|
|
1501
1501
|
"use strict";
|
|
1502
1502
|
var u = require_universalify().fromCallback;
|
|
1503
1503
|
var fs13 = require_graceful_fs();
|
|
@@ -1611,9 +1611,9 @@ var require_fs = __commonJS({
|
|
|
1611
1611
|
}
|
|
1612
1612
|
});
|
|
1613
1613
|
|
|
1614
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1614
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/mkdirs/utils.js
|
|
1615
1615
|
var require_utils = __commonJS({
|
|
1616
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1616
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/mkdirs/utils.js"(exports, module) {
|
|
1617
1617
|
"use strict";
|
|
1618
1618
|
var path17 = __require("path");
|
|
1619
1619
|
module.exports.checkPath = function checkPath(pth) {
|
|
@@ -1629,9 +1629,9 @@ var require_utils = __commonJS({
|
|
|
1629
1629
|
}
|
|
1630
1630
|
});
|
|
1631
1631
|
|
|
1632
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1632
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/mkdirs/make-dir.js
|
|
1633
1633
|
var require_make_dir = __commonJS({
|
|
1634
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1634
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/mkdirs/make-dir.js"(exports, module) {
|
|
1635
1635
|
"use strict";
|
|
1636
1636
|
var fs13 = require_fs();
|
|
1637
1637
|
var { checkPath } = require_utils();
|
|
@@ -1657,9 +1657,9 @@ var require_make_dir = __commonJS({
|
|
|
1657
1657
|
}
|
|
1658
1658
|
});
|
|
1659
1659
|
|
|
1660
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1660
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/mkdirs/index.js
|
|
1661
1661
|
var require_mkdirs = __commonJS({
|
|
1662
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1662
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/mkdirs/index.js"(exports, module) {
|
|
1663
1663
|
"use strict";
|
|
1664
1664
|
var u = require_universalify().fromPromise;
|
|
1665
1665
|
var { makeDir: _makeDir, makeDirSync } = require_make_dir();
|
|
@@ -1676,9 +1676,9 @@ var require_mkdirs = __commonJS({
|
|
|
1676
1676
|
}
|
|
1677
1677
|
});
|
|
1678
1678
|
|
|
1679
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1679
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/path-exists/index.js
|
|
1680
1680
|
var require_path_exists = __commonJS({
|
|
1681
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1681
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/path-exists/index.js"(exports, module) {
|
|
1682
1682
|
"use strict";
|
|
1683
1683
|
var u = require_universalify().fromPromise;
|
|
1684
1684
|
var fs13 = require_fs();
|
|
@@ -1692,9 +1692,9 @@ var require_path_exists = __commonJS({
|
|
|
1692
1692
|
}
|
|
1693
1693
|
});
|
|
1694
1694
|
|
|
1695
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1695
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/util/utimes.js
|
|
1696
1696
|
var require_utimes = __commonJS({
|
|
1697
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1697
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/util/utimes.js"(exports, module) {
|
|
1698
1698
|
"use strict";
|
|
1699
1699
|
var fs13 = require_fs();
|
|
1700
1700
|
var u = require_universalify().fromPromise;
|
|
@@ -1726,9 +1726,9 @@ var require_utimes = __commonJS({
|
|
|
1726
1726
|
}
|
|
1727
1727
|
});
|
|
1728
1728
|
|
|
1729
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1729
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/util/stat.js
|
|
1730
1730
|
var require_stat = __commonJS({
|
|
1731
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1731
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/util/stat.js"(exports, module) {
|
|
1732
1732
|
"use strict";
|
|
1733
1733
|
var fs13 = require_fs();
|
|
1734
1734
|
var path17 = __require("path");
|
|
@@ -1858,9 +1858,9 @@ var require_stat = __commonJS({
|
|
|
1858
1858
|
}
|
|
1859
1859
|
});
|
|
1860
1860
|
|
|
1861
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1861
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/util/async.js
|
|
1862
1862
|
var require_async = __commonJS({
|
|
1863
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1863
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/util/async.js"(exports, module) {
|
|
1864
1864
|
"use strict";
|
|
1865
1865
|
async function asyncIteratorConcurrentProcess(iterator, fn) {
|
|
1866
1866
|
const promises = [];
|
|
@@ -1886,9 +1886,9 @@ var require_async = __commonJS({
|
|
|
1886
1886
|
}
|
|
1887
1887
|
});
|
|
1888
1888
|
|
|
1889
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1889
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/copy/copy.js
|
|
1890
1890
|
var require_copy = __commonJS({
|
|
1891
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
1891
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/copy/copy.js"(exports, module) {
|
|
1892
1892
|
"use strict";
|
|
1893
1893
|
var fs13 = require_fs();
|
|
1894
1894
|
var path17 = __require("path");
|
|
@@ -2012,9 +2012,9 @@ var require_copy = __commonJS({
|
|
|
2012
2012
|
}
|
|
2013
2013
|
});
|
|
2014
2014
|
|
|
2015
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2015
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/copy/copy-sync.js
|
|
2016
2016
|
var require_copy_sync = __commonJS({
|
|
2017
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2017
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/copy/copy-sync.js"(exports, module) {
|
|
2018
2018
|
"use strict";
|
|
2019
2019
|
var fs13 = require_graceful_fs();
|
|
2020
2020
|
var path17 = __require("path");
|
|
@@ -2150,9 +2150,9 @@ var require_copy_sync = __commonJS({
|
|
|
2150
2150
|
}
|
|
2151
2151
|
});
|
|
2152
2152
|
|
|
2153
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2153
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/copy/index.js
|
|
2154
2154
|
var require_copy2 = __commonJS({
|
|
2155
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2155
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/copy/index.js"(exports, module) {
|
|
2156
2156
|
"use strict";
|
|
2157
2157
|
var u = require_universalify().fromPromise;
|
|
2158
2158
|
module.exports = {
|
|
@@ -2162,9 +2162,9 @@ var require_copy2 = __commonJS({
|
|
|
2162
2162
|
}
|
|
2163
2163
|
});
|
|
2164
2164
|
|
|
2165
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2165
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/remove/index.js
|
|
2166
2166
|
var require_remove = __commonJS({
|
|
2167
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2167
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/remove/index.js"(exports, module) {
|
|
2168
2168
|
"use strict";
|
|
2169
2169
|
var fs13 = require_graceful_fs();
|
|
2170
2170
|
var u = require_universalify().fromCallback;
|
|
@@ -2181,9 +2181,9 @@ var require_remove = __commonJS({
|
|
|
2181
2181
|
}
|
|
2182
2182
|
});
|
|
2183
2183
|
|
|
2184
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2184
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/empty/index.js
|
|
2185
2185
|
var require_empty = __commonJS({
|
|
2186
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2186
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/empty/index.js"(exports, module) {
|
|
2187
2187
|
"use strict";
|
|
2188
2188
|
var u = require_universalify().fromPromise;
|
|
2189
2189
|
var fs13 = require_fs();
|
|
@@ -2220,9 +2220,9 @@ var require_empty = __commonJS({
|
|
|
2220
2220
|
}
|
|
2221
2221
|
});
|
|
2222
2222
|
|
|
2223
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2223
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/ensure/file.js
|
|
2224
2224
|
var require_file = __commonJS({
|
|
2225
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2225
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/ensure/file.js"(exports, module) {
|
|
2226
2226
|
"use strict";
|
|
2227
2227
|
var u = require_universalify().fromPromise;
|
|
2228
2228
|
var path17 = __require("path");
|
|
@@ -2279,9 +2279,9 @@ var require_file = __commonJS({
|
|
|
2279
2279
|
}
|
|
2280
2280
|
});
|
|
2281
2281
|
|
|
2282
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2282
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/ensure/link.js
|
|
2283
2283
|
var require_link = __commonJS({
|
|
2284
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2284
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/ensure/link.js"(exports, module) {
|
|
2285
2285
|
"use strict";
|
|
2286
2286
|
var u = require_universalify().fromPromise;
|
|
2287
2287
|
var path17 = __require("path");
|
|
@@ -2336,9 +2336,9 @@ var require_link = __commonJS({
|
|
|
2336
2336
|
}
|
|
2337
2337
|
});
|
|
2338
2338
|
|
|
2339
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2339
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/ensure/symlink-paths.js
|
|
2340
2340
|
var require_symlink_paths = __commonJS({
|
|
2341
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2341
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/ensure/symlink-paths.js"(exports, module) {
|
|
2342
2342
|
"use strict";
|
|
2343
2343
|
var path17 = __require("path");
|
|
2344
2344
|
var fs13 = require_fs();
|
|
@@ -2409,9 +2409,9 @@ var require_symlink_paths = __commonJS({
|
|
|
2409
2409
|
}
|
|
2410
2410
|
});
|
|
2411
2411
|
|
|
2412
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2412
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/ensure/symlink-type.js
|
|
2413
2413
|
var require_symlink_type = __commonJS({
|
|
2414
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2414
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/ensure/symlink-type.js"(exports, module) {
|
|
2415
2415
|
"use strict";
|
|
2416
2416
|
var fs13 = require_fs();
|
|
2417
2417
|
var u = require_universalify().fromPromise;
|
|
@@ -2442,9 +2442,9 @@ var require_symlink_type = __commonJS({
|
|
|
2442
2442
|
}
|
|
2443
2443
|
});
|
|
2444
2444
|
|
|
2445
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2445
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/ensure/symlink.js
|
|
2446
2446
|
var require_symlink = __commonJS({
|
|
2447
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2447
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/ensure/symlink.js"(exports, module) {
|
|
2448
2448
|
"use strict";
|
|
2449
2449
|
var u = require_universalify().fromPromise;
|
|
2450
2450
|
var path17 = __require("path");
|
|
@@ -2523,9 +2523,9 @@ var require_symlink = __commonJS({
|
|
|
2523
2523
|
}
|
|
2524
2524
|
});
|
|
2525
2525
|
|
|
2526
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2526
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/ensure/index.js
|
|
2527
2527
|
var require_ensure = __commonJS({
|
|
2528
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2528
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/ensure/index.js"(exports, module) {
|
|
2529
2529
|
"use strict";
|
|
2530
2530
|
var { createFile, createFileSync } = require_file();
|
|
2531
2531
|
var { createLink, createLinkSync } = require_link();
|
|
@@ -2550,12 +2550,15 @@ var require_ensure = __commonJS({
|
|
|
2550
2550
|
}
|
|
2551
2551
|
});
|
|
2552
2552
|
|
|
2553
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/jsonfile/6.2.
|
|
2553
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/jsonfile/6.2.1/4eef6320b797a6391b2bd057b7f45a61f6df9e0461d95dbbea0e70d498ea3860/node_modules/jsonfile/utils.js
|
|
2554
2554
|
var require_utils2 = __commonJS({
|
|
2555
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/jsonfile/6.2.
|
|
2555
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/jsonfile/6.2.1/4eef6320b797a6391b2bd057b7f45a61f6df9e0461d95dbbea0e70d498ea3860/node_modules/jsonfile/utils.js"(exports, module) {
|
|
2556
2556
|
function stringify(obj, { EOL = "\n", finalEOL = true, replacer = null, spaces } = {}) {
|
|
2557
2557
|
const EOF = finalEOL ? EOL : "";
|
|
2558
2558
|
const str = JSON.stringify(obj, replacer, spaces);
|
|
2559
|
+
if (str === void 0) {
|
|
2560
|
+
throw new TypeError(`Converting ${typeof obj} value to JSON is not supported`);
|
|
2561
|
+
}
|
|
2559
2562
|
return str.replace(/\n/g, EOL) + EOF;
|
|
2560
2563
|
}
|
|
2561
2564
|
function stripBom2(content) {
|
|
@@ -2566,9 +2569,9 @@ var require_utils2 = __commonJS({
|
|
|
2566
2569
|
}
|
|
2567
2570
|
});
|
|
2568
2571
|
|
|
2569
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/jsonfile/6.2.
|
|
2572
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/jsonfile/6.2.1/4eef6320b797a6391b2bd057b7f45a61f6df9e0461d95dbbea0e70d498ea3860/node_modules/jsonfile/index.js
|
|
2570
2573
|
var require_jsonfile = __commonJS({
|
|
2571
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/jsonfile/6.2.
|
|
2574
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/jsonfile/6.2.1/4eef6320b797a6391b2bd057b7f45a61f6df9e0461d95dbbea0e70d498ea3860/node_modules/jsonfile/index.js"(exports, module) {
|
|
2572
2575
|
var _fs;
|
|
2573
2576
|
try {
|
|
2574
2577
|
_fs = require_graceful_fs();
|
|
@@ -2638,9 +2641,9 @@ var require_jsonfile = __commonJS({
|
|
|
2638
2641
|
}
|
|
2639
2642
|
});
|
|
2640
2643
|
|
|
2641
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2644
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/json/jsonfile.js
|
|
2642
2645
|
var require_jsonfile2 = __commonJS({
|
|
2643
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2646
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/json/jsonfile.js"(exports, module) {
|
|
2644
2647
|
"use strict";
|
|
2645
2648
|
var jsonFile = require_jsonfile();
|
|
2646
2649
|
module.exports = {
|
|
@@ -2653,9 +2656,9 @@ var require_jsonfile2 = __commonJS({
|
|
|
2653
2656
|
}
|
|
2654
2657
|
});
|
|
2655
2658
|
|
|
2656
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2659
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/output-file/index.js
|
|
2657
2660
|
var require_output_file = __commonJS({
|
|
2658
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2661
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/output-file/index.js"(exports, module) {
|
|
2659
2662
|
"use strict";
|
|
2660
2663
|
var u = require_universalify().fromPromise;
|
|
2661
2664
|
var fs13 = require_fs();
|
|
@@ -2683,9 +2686,9 @@ var require_output_file = __commonJS({
|
|
|
2683
2686
|
}
|
|
2684
2687
|
});
|
|
2685
2688
|
|
|
2686
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2689
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/json/output-json.js
|
|
2687
2690
|
var require_output_json = __commonJS({
|
|
2688
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2691
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/json/output-json.js"(exports, module) {
|
|
2689
2692
|
"use strict";
|
|
2690
2693
|
var { stringify } = require_utils2();
|
|
2691
2694
|
var { outputFile } = require_output_file();
|
|
@@ -2697,9 +2700,9 @@ var require_output_json = __commonJS({
|
|
|
2697
2700
|
}
|
|
2698
2701
|
});
|
|
2699
2702
|
|
|
2700
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2703
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/json/output-json-sync.js
|
|
2701
2704
|
var require_output_json_sync = __commonJS({
|
|
2702
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2705
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/json/output-json-sync.js"(exports, module) {
|
|
2703
2706
|
"use strict";
|
|
2704
2707
|
var { stringify } = require_utils2();
|
|
2705
2708
|
var { outputFileSync } = require_output_file();
|
|
@@ -2711,9 +2714,9 @@ var require_output_json_sync = __commonJS({
|
|
|
2711
2714
|
}
|
|
2712
2715
|
});
|
|
2713
2716
|
|
|
2714
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2717
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/json/index.js
|
|
2715
2718
|
var require_json = __commonJS({
|
|
2716
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2719
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/json/index.js"(exports, module) {
|
|
2717
2720
|
"use strict";
|
|
2718
2721
|
var u = require_universalify().fromPromise;
|
|
2719
2722
|
var jsonFile = require_jsonfile2();
|
|
@@ -2729,9 +2732,9 @@ var require_json = __commonJS({
|
|
|
2729
2732
|
}
|
|
2730
2733
|
});
|
|
2731
2734
|
|
|
2732
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2735
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/move/move.js
|
|
2733
2736
|
var require_move = __commonJS({
|
|
2734
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2737
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/move/move.js"(exports, module) {
|
|
2735
2738
|
"use strict";
|
|
2736
2739
|
var fs13 = require_fs();
|
|
2737
2740
|
var path17 = __require("path");
|
|
@@ -2781,9 +2784,9 @@ var require_move = __commonJS({
|
|
|
2781
2784
|
}
|
|
2782
2785
|
});
|
|
2783
2786
|
|
|
2784
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2787
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/move/move-sync.js
|
|
2785
2788
|
var require_move_sync = __commonJS({
|
|
2786
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2789
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/move/move-sync.js"(exports, module) {
|
|
2787
2790
|
"use strict";
|
|
2788
2791
|
var fs13 = require_graceful_fs();
|
|
2789
2792
|
var path17 = __require("path");
|
|
@@ -2834,9 +2837,9 @@ var require_move_sync = __commonJS({
|
|
|
2834
2837
|
}
|
|
2835
2838
|
});
|
|
2836
2839
|
|
|
2837
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2840
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/move/index.js
|
|
2838
2841
|
var require_move2 = __commonJS({
|
|
2839
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2842
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/move/index.js"(exports, module) {
|
|
2840
2843
|
"use strict";
|
|
2841
2844
|
var u = require_universalify().fromPromise;
|
|
2842
2845
|
module.exports = {
|
|
@@ -2846,9 +2849,9 @@ var require_move2 = __commonJS({
|
|
|
2846
2849
|
}
|
|
2847
2850
|
});
|
|
2848
2851
|
|
|
2849
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2852
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/index.js
|
|
2850
2853
|
var require_lib = __commonJS({
|
|
2851
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/
|
|
2854
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/fs-extra/11.3.4/4cb0d718f8660ad2564c0d882d89a7255b59466c803fa7e6007de96d8c5aa18b/node_modules/fs-extra/lib/index.js"(exports, module) {
|
|
2852
2855
|
"use strict";
|
|
2853
2856
|
module.exports = {
|
|
2854
2857
|
// Export promiseified graceful-fs:
|
|
@@ -2882,7 +2885,7 @@ var init_rimraf = __esm({
|
|
|
2882
2885
|
}
|
|
2883
2886
|
});
|
|
2884
2887
|
|
|
2885
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/rename-overwrite/7.0.1/
|
|
2888
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/rename-overwrite/7.0.1/87428b418e43a94bf7c7f463bfc62ae5e0dc2e0a72cb36b94d07cf207fc3347b/node_modules/rename-overwrite/index.js
|
|
2886
2889
|
import crypto2 from "node:crypto";
|
|
2887
2890
|
import fs2 from "node:fs";
|
|
2888
2891
|
import path2 from "node:path";
|
|
@@ -2973,7 +2976,7 @@ function swapRenameSync(oldPath, newPath) {
|
|
|
2973
2976
|
}
|
|
2974
2977
|
var import_fs_extra, copySync, copy;
|
|
2975
2978
|
var init_rename_overwrite = __esm({
|
|
2976
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/rename-overwrite/7.0.1/
|
|
2979
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/rename-overwrite/7.0.1/87428b418e43a94bf7c7f463bfc62ae5e0dc2e0a72cb36b94d07cf207fc3347b/node_modules/rename-overwrite/index.js"() {
|
|
2977
2980
|
import_fs_extra = __toESM(require_lib(), 1);
|
|
2978
2981
|
init_rimraf();
|
|
2979
2982
|
({ copySync, copy } = import_fs_extra.default);
|
|
@@ -6469,9 +6472,9 @@ var require_node_gyp_build_optional_packages = __commonJS({
|
|
|
6469
6472
|
}
|
|
6470
6473
|
});
|
|
6471
6474
|
|
|
6472
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/msgpackr-extract/3.0.3/
|
|
6475
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/msgpackr-extract/3.0.3/dc63a7e9c8306acc1418464548648c97e4a5c8c81989d7240121ad9e55103078/node_modules/msgpackr-extract/index.js
|
|
6473
6476
|
var require_msgpackr_extract = __commonJS({
|
|
6474
|
-
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/msgpackr-extract/3.0.3/
|
|
6477
|
+
"../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/msgpackr-extract/3.0.3/dc63a7e9c8306acc1418464548648c97e4a5c8c81989d7240121ad9e55103078/node_modules/msgpackr-extract/index.js"(exports, module) {
|
|
6475
6478
|
module.exports = require_node_gyp_build_optional_packages()(__dirname);
|
|
6476
6479
|
}
|
|
6477
6480
|
});
|
|
@@ -6870,7 +6873,7 @@ var summaryLogger = logger("summary");
|
|
|
6870
6873
|
// ../core/core-loggers/lib/updateCheckLogger.js
|
|
6871
6874
|
var updateCheckLogger = logger("update-check");
|
|
6872
6875
|
|
|
6873
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/symlink-dir/10.0.1/
|
|
6876
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/symlink-dir/10.0.1/99651a995e6d76e095bc87316473b0e784f9c820abf21dbac80a697d2ae16c64/node_modules/symlink-dir/dist/index.js
|
|
6874
6877
|
init_better_path_resolve();
|
|
6875
6878
|
init_rename_overwrite();
|
|
6876
6879
|
import { promises as fs4, symlinkSync, mkdirSync, readlinkSync, unlinkSync } from "fs";
|
|
@@ -7681,7 +7684,7 @@ function createCafsStore(storeDir, opts2) {
|
|
|
7681
7684
|
import fs11 from "node:fs";
|
|
7682
7685
|
import { createRequire as createRequire2 } from "node:module";
|
|
7683
7686
|
|
|
7684
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/msgpackr/1.11.8/
|
|
7687
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/msgpackr/1.11.8/46dd53c5eb8ac19961b8dcfdc6cb3c46229e7d03ddda6f31cf5a680868f31b80/node_modules/msgpackr/unpack.js
|
|
7685
7688
|
var decoder;
|
|
7686
7689
|
try {
|
|
7687
7690
|
decoder = new TextDecoder();
|
|
@@ -8798,7 +8801,7 @@ function setReadStruct(updatedReadStruct, loadedStructs, saveState3) {
|
|
|
8798
8801
|
onSaveState = saveState3;
|
|
8799
8802
|
}
|
|
8800
8803
|
|
|
8801
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/msgpackr/1.11.8/
|
|
8804
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/msgpackr/1.11.8/46dd53c5eb8ac19961b8dcfdc6cb3c46229e7d03ddda6f31cf5a680868f31b80/node_modules/msgpackr/pack.js
|
|
8802
8805
|
var textEncoder;
|
|
8803
8806
|
try {
|
|
8804
8807
|
textEncoder = new TextEncoder();
|
|
@@ -9864,7 +9867,7 @@ var REUSE_BUFFER_MODE = 512;
|
|
|
9864
9867
|
var RESET_BUFFER_MODE = 1024;
|
|
9865
9868
|
var RESERVE_START_SPACE = 2048;
|
|
9866
9869
|
|
|
9867
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/msgpackr/1.11.8/
|
|
9870
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/msgpackr/1.11.8/46dd53c5eb8ac19961b8dcfdc6cb3c46229e7d03ddda6f31cf5a680868f31b80/node_modules/msgpackr/struct.js
|
|
9868
9871
|
var ASCII = 3;
|
|
9869
9872
|
var NUMBER = 0;
|
|
9870
9873
|
var UTF8 = 2;
|
|
@@ -10579,7 +10582,7 @@ function prepareStructures2(structures, packr2) {
|
|
|
10579
10582
|
}
|
|
10580
10583
|
setReadStruct(readStruct2, onLoadedStructures2, saveState2);
|
|
10581
10584
|
|
|
10582
|
-
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/msgpackr/1.11.8/
|
|
10585
|
+
// ../../../../setup-pnpm/node_modules/.bin/store/v11/links/@/msgpackr/1.11.8/46dd53c5eb8ac19961b8dcfdc6cb3c46229e7d03ddda6f31cf5a680868f31b80/node_modules/msgpackr/node-index.js
|
|
10583
10586
|
import { createRequire } from "module";
|
|
10584
10587
|
var nativeAccelerationDisabled = process.env.MSGPACKR_NATIVE_ACCELERATION_DISABLED !== void 0 && process.env.MSGPACKR_NATIVE_ACCELERATION_DISABLED.toLowerCase() === "true";
|
|
10585
10588
|
if (!nativeAccelerationDisabled) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/exe",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.8",
|
|
4
4
|
"description": "Fast, disk space efficient package manager",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -29,33 +29,41 @@
|
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@reflink/reflink": "0.1.19",
|
|
32
|
-
"detect-libc": "^2.
|
|
32
|
+
"detect-libc": "^2.1.2"
|
|
33
33
|
},
|
|
34
34
|
"optionalDependencies": {
|
|
35
|
-
"@pnpm/linux-x64": "11.0.
|
|
36
|
-
"@pnpm/linuxstatic-
|
|
37
|
-
"@pnpm/
|
|
38
|
-
"@pnpm/
|
|
39
|
-
"@pnpm/
|
|
40
|
-
"@pnpm/win-arm64": "11.0.
|
|
41
|
-
"@pnpm/
|
|
35
|
+
"@pnpm/linux-x64": "11.0.8",
|
|
36
|
+
"@pnpm/linuxstatic-x64": "11.0.8",
|
|
37
|
+
"@pnpm/linuxstatic-arm64": "11.0.8",
|
|
38
|
+
"@pnpm/linux-arm64": "11.0.8",
|
|
39
|
+
"@pnpm/macos-arm64": "11.0.8",
|
|
40
|
+
"@pnpm/win-arm64": "11.0.8",
|
|
41
|
+
"@pnpm/win-x64": "11.0.8"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@jest/globals": "30.3.0",
|
|
45
|
+
"@zkochan/cmd-shim": "^9.0.2",
|
|
45
46
|
"execa": "npm:safe-execa@0.3.0",
|
|
46
|
-
"@pnpm/exe": "11.0.
|
|
47
|
-
"@pnpm/jest-config": "1100.0.
|
|
47
|
+
"@pnpm/exe": "11.0.8",
|
|
48
|
+
"@pnpm/jest-config": "1100.0.5"
|
|
48
49
|
},
|
|
49
50
|
"jest": {
|
|
50
51
|
"preset": "@pnpm/jest-config"
|
|
51
52
|
},
|
|
52
53
|
"preferGlobal": true,
|
|
53
54
|
"publishConfig": {
|
|
54
|
-
"tag": "next-10"
|
|
55
|
+
"tag": "next-10",
|
|
56
|
+
"executableFiles": [
|
|
57
|
+
"./dist/node-gyp-bin/node-gyp",
|
|
58
|
+
"./dist/node-gyp-bin/node-gyp.cmd",
|
|
59
|
+
"./dist/node_modules/node-gyp/bin/node-gyp.js"
|
|
60
|
+
]
|
|
55
61
|
},
|
|
56
62
|
"scripts": {
|
|
57
63
|
"preinstall": "node setup.js",
|
|
58
|
-
"build-artifacts": "pn --filter=pnpm prepublishOnly && node ./scripts/build-artifacts.ts"
|
|
64
|
+
"build-artifacts": "pn --filter=pnpm prepublishOnly && node ./scripts/build-artifacts.ts",
|
|
65
|
+
".test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --disable-warning=ExperimentalWarning --disable-warning=DEP0169\" jest",
|
|
66
|
+
"test": "pn .test"
|
|
59
67
|
},
|
|
60
68
|
"bin": {
|
|
61
69
|
"pnpm": "pnpm",
|
package/setup.js
CHANGED
|
@@ -71,12 +71,26 @@ if (platform === 'win32') {
|
|
|
71
71
|
// be the real binary so the shim can execute it.
|
|
72
72
|
linkSync(bin, path.resolve(ownDir, 'pnpm'))
|
|
73
73
|
|
|
74
|
+
// Aliases (pn / pnpx / pnx) need to be .exe hardlinks of the SEA binary,
|
|
75
|
+
// not the .cmd / .ps1 wrappers we ship in the tarball. Reason: in MSYS2 /
|
|
76
|
+
// Git Bash, cmd-shim's Bash shim for a .cmd target does
|
|
77
|
+
// exec cmd /C "...target.cmd" "$@"
|
|
78
|
+
// and MSYS2 mangles the lone `/C` switch into a Windows path before
|
|
79
|
+
// cmd.exe sees it — cmd.exe then finds no /C or /K and falls into
|
|
80
|
+
// interactive mode, printing its banner instead of the alias. .exe
|
|
81
|
+
// sources sidestep cmd-shim's wrapper. The SEA binary detects which name
|
|
82
|
+
// it was launched as via process.execPath and prepends `dlx` for
|
|
83
|
+
// pnpx / pnx. See https://github.com/pnpm/pnpm/issues/11486.
|
|
84
|
+
for (const alias of ['pn', 'pnpx', 'pnx']) {
|
|
85
|
+
linkSync(bin, path.resolve(ownDir, `${alias}.exe`))
|
|
86
|
+
}
|
|
87
|
+
|
|
74
88
|
const pkgJsonPath = path.resolve(ownDir, 'package.json')
|
|
75
89
|
const pkg = JSON.parse(fs.readFileSync(pkgJsonPath, 'utf8'))
|
|
76
90
|
pkg.bin.pnpm = 'pnpm.exe'
|
|
77
|
-
pkg.bin.pn = 'pn.
|
|
78
|
-
pkg.bin.pnpx = 'pnpx.
|
|
79
|
-
pkg.bin.pnx = 'pnx.
|
|
91
|
+
pkg.bin.pn = 'pn.exe'
|
|
92
|
+
pkg.bin.pnpx = 'pnpx.exe'
|
|
93
|
+
pkg.bin.pnx = 'pnx.exe'
|
|
80
94
|
fs.writeFileSync(pkgJsonPath, JSON.stringify(pkg, null, 2))
|
|
81
95
|
}
|
|
82
96
|
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
Copyright (c) 2011 Tim Koschützki (tim@debuggable.com), Felix Geisendörfer (felix@debuggable.com)
|
|
2
|
-
Copyright (c) 2014 IndigoUnited
|
|
3
|
-
|
|
4
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
6
|
-
in the Software without restriction, including without limitation the rights
|
|
7
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
-
copies of the Software, and to permit persons to whom the Software is furnished
|
|
9
|
-
to do so, subject to the following conditions:
|
|
10
|
-
|
|
11
|
-
The above copyright notice and this permission notice shall be included in all
|
|
12
|
-
copies or substantial portions of the Software.
|
|
13
|
-
|
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
20
|
-
THE SOFTWARE.
|