Comparing version 2.3.0 to 2.3.1
@@ -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 @@ |
{ | ||
"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) => { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
61772
1532