socket 1.0.15 → 1.0.17
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/cli.js +4 -2
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +15 -4
- package/dist/constants.js.map +1 -1
- package/dist/types/constants.d.mts +1 -0
- package/dist/types/constants.d.mts.map +1 -1
- package/dist/types/utils/sdk.d.mts.map +1 -1
- package/dist/utils.js +23 -10
- package/dist/utils.js.map +1 -1
- package/dist/vendor.js +16 -11
- package/package.json +5 -5
package/dist/cli.js
CHANGED
|
@@ -4243,7 +4243,9 @@ async function npmFix(pkgEnvDetails, fixConfig) {
|
|
|
4243
4243
|
definitions: vendor.definitionsExports.definitions,
|
|
4244
4244
|
// Lazily access constants.execPath.
|
|
4245
4245
|
execPath: constants.execPath,
|
|
4246
|
-
env:
|
|
4246
|
+
env: {
|
|
4247
|
+
...process.env
|
|
4248
|
+
},
|
|
4247
4249
|
flatten: vendor.definitionsExports.flatten,
|
|
4248
4250
|
npmPath,
|
|
4249
4251
|
platform: process.platform,
|
|
@@ -14182,5 +14184,5 @@ void (async () => {
|
|
|
14182
14184
|
await utils.captureException(e);
|
|
14183
14185
|
}
|
|
14184
14186
|
})();
|
|
14185
|
-
//# debugId=
|
|
14187
|
+
//# debugId=335a870f-91f1-494a-ab58-35161f055590
|
|
14186
14188
|
//# sourceMappingURL=cli.js.map
|