Socket
Socket
Sign inDemoInstall

bree

Package Overview
Dependencies
Maintainers
3
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bree - npm Package Compare versions

Comparing version 9.0.1 to 9.1.0

2

package.json
{
"name": "bree",
"description": "The best job scheduler for Node.js and JavaScript with cron, dates, ms, later, and human-friendly support. Works in Node v12.11.0+, uses worker threads to spawn sandboxed processes, and supports async/await, retries, throttling, concurrency, and cancelable promises (graceful shutdown). Simple, fast, and lightweight. Made for Forward Email and Lad.",
"version": "9.0.1",
"version": "9.1.0",
"author": "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",

@@ -6,0 +6,0 @@ "bugs": {

@@ -28,2 +28,8 @@ //

function omit(obj, props) {
obj = { ...obj };
for (const prop of props) delete obj[prop];
return obj;
}
const debug = debuglog('bree');

@@ -365,3 +371,6 @@

workerData: {
job,
job: {
...job,
...(job.worker ? { worker: omit(job.worker, ['env']) } : {})
},
...(this.config.worker && this.config.worker.workerData

@@ -368,0 +377,0 @@ ? this.config.worker.workerData

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