New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

node-multitask

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-multitask - npm Package Compare versions

Comparing version 0.5.1 to 0.5.2

22

dist/worker.js

@@ -40,4 +40,22 @@ "use strict";

external: true,
builtin: ['assert', 'crypto', 'dns', 'events', 'http', 'https', 'net', 'querystring', 'stream', 'string_decoder', 'tls', 'dgram', 'url', 'zlib'],
context: 'sandbox',
builtin: [
'assert',
'buffer',
'crypto',
'dns',
'events',
'http',
'https',
'net',
'path',
'punycode',
'querystring',
'stream',
'string_decoder',
'tls',
'dgram',
'url',
'zlib',
'util',
],
},

@@ -44,0 +62,0 @@ });

6

package.json
{
"name": "node-multitask",
"version": "0.5.1",
"version": "0.5.2",
"description": "A simple multi task runner",

@@ -21,7 +21,7 @@ "main": "dist/index.js",

"devDependencies": {
"@types/node": "^7.0.12",
"@types/node": "^7.0.21",
"@types/uuid": "^2.0.29",
"typescript": "^2.2.2"
"typescript": "^2.3.2"
},
"typings": "./dist"
}
import { ChildProcess, ForkOptions } from 'child_process';
type timestamp = number;
type logger = (...args) => any;
type logger = (...args: any[]) => any;

@@ -26,4 +26,4 @@ declare namespace Task {

export interface Registered extends Base {
resolve: (result?) => any;
reject: (error?) => any;
resolve: (result?: any) => any;
reject: (error?: any) => any;
data?: object;

@@ -59,3 +59,3 @@ on?: Process.Child;

export interface CooldownRegistry {
[prop: string]: { errorCount: number, process: Child};
[prop: string]: { errorCount: number, process: Child };
}

@@ -62,0 +62,0 @@

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