Socket
Socket
Sign inDemoInstall

roarr

Package Overview
Dependencies
27
Maintainers
1
Versions
150
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.14.7 to 7.15.0

6

dist/factories/createNodeWriter.js

@@ -14,2 +14,8 @@ "use strict";

const stream = targetStream.toUpperCase() === 'STDOUT' ? process.stdout : process.stderr;
stream.on('error', (error) => {
if (error.code === 'EPIPE') {
return;
}
throw error;
});
return createBlockingWriter(stream);

@@ -16,0 +22,0 @@ };

16

package.json

@@ -11,7 +11,7 @@ {

},
"files": [
"test/roarr/**/*"
],
"nodeArguments": [
"--loader=tsx"
],
"files": [
"test/roarr/**/*"
]

@@ -45,3 +45,3 @@ },

"eslint": "^8.36.0",
"eslint-config-canonical": "^40.0.9",
"eslint-config-canonical": "^41.0.1",
"husky": "^7.0.4",

@@ -54,2 +54,5 @@ "nyc": "^15.1.0",

},
"engines": {
"node": ">=12.0"
},
"files": [

@@ -59,5 +62,2 @@ "src",

],
"engines": {
"node": ">=12.0"
},
"keywords": [

@@ -83,3 +83,3 @@ "log",

"types": "./dist/Roarr.d.ts",
"version": "7.14.7"
"version": "7.15.0"
}

@@ -16,3 +16,11 @@ import { type LogWriter } from '../types';

stream.on('error', (error) => {
if (error.code === 'EPIPE') {
return;
}
throw error;
});
return createBlockingWriter(stream);
};

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc