Socket
Socket
Sign inDemoInstall

@yarnpkg/shell

Package Overview
Dependencies
Maintainers
6
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@yarnpkg/shell - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1-rc.1

10

lib/index.js

@@ -548,6 +548,14 @@ "use strict";

return pipe_1.makeBuiltin(async ({ stdin, stdout, stderr }) => {
const { stdin: initialStdin, stdout: initialStdout, stderr: initialStderr, } = state;
state.stdin = stdin;
state.stdout = stdout;
state.stderr = stderr;
return await builtin(rest, opts, state);
try {
return await builtin(rest, opts, state);
}
finally {
state.stdin = initialStdin;
state.stdout = initialStdout;
state.stderr = initialStderr;
}
});

@@ -554,0 +562,0 @@ }

3

package.json
{
"name": "@yarnpkg/shell",
"version": "3.0.0",
"version": "3.0.1-rc.1",
"license": "BSD-2-Clause",

@@ -46,3 +46,4 @@ "main": "./lib/index.js",

},
"stableVersion": "3.0.0",
"typings": "./lib/index.d.ts"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc