Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

run-pty

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

run-pty - npm Package Compare versions

Comparing version 2.3.0 to 2.3.1

4

CHANGELOG.md

@@ -0,1 +1,5 @@

### Version 2.3.1 (2021-03-29)
- Fixed: Running with an empty NDJSON file now just exits with status 0 instead of being an error, to match how a JSON file with `[]` works. This is useful when generating the NDJSON from a script and it sometimes produces no commands to run.
### Version 2.3.0 (2021-02-25)

@@ -2,0 +6,0 @@

14

package.json
{
"name": "run-pty",
"version": "2.3.0",
"version": "2.3.1",
"author": "Simon Lydell",

@@ -30,11 +30,11 @@ "license": "MIT",

"devDependencies": {
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "4.15.2",
"@typescript-eslint/parser": "4.15.2",
"eslint": "7.20.0",
"eslint-plugin-jest": "24.1.5",
"@types/jest": "26.0.22",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"eslint": "7.23.0",
"eslint-plugin-jest": "24.3.2",
"jest": "26.6.3",
"jest-environment-node-single-context": "26.2.0",
"prettier": "2.2.1",
"typescript": "4.2.2"
"typescript": "4.2.3"
},

@@ -41,0 +41,0 @@ "scripts": {

@@ -698,2 +698,3 @@ #!/usr/bin/env node

case "": // An empty file is empty NDJSON.
case "{":

@@ -700,0 +701,0 @@ return string.split("\n").flatMap((line, lineIndex) => {

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