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

diesis-electrician

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

diesis-electrician - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

2

package.json
{
"name": "diesis-electrician",
"version": "0.2.0",
"version": "0.2.1",
"description": "Adapter to use electrician components in diesis",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -63,4 +63,6 @@ const { promisify } = require('util')

.map((name) => startRegistry[name])
startRegistry[name] = dependency(dependencies, decorateComp(comp.start))
stopRegistry[name] = dependency(decorateComp(comp.stop))
const startFunc = comp.start || function (cb) {cb()}
const stopFunc = comp.stop || function (cb) {cb()}
startRegistry[name] = dependency(dependencies, decorateComp(startFunc.bind(comp)))
stopRegistry[name] = dependency(decorateComp(stopFunc.bind(comp)))
})

@@ -67,0 +69,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