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

@node-ts/bus-core

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@node-ts/bus-core - npm Package Compare versions

Comparing version 1.1.0-beta.0 to 1.1.0-beta.1

5

dist/workflow/registry/workflow-registry.js

@@ -111,2 +111,7 @@ "use strict";

return tslib_1.__awaiter(this, void 0, void 0, function* () {
const isPrepared = this.persistence !== undefined;
if (!isPrepared) {
// If the registry has not been prepared, then there is no logger or persistence available
return;
}
this.logger.debug('Disposing workflow registry');

@@ -113,0 +118,0 @@ try {

2

package.json
{
"name": "@node-ts/bus-core",
"version": "1.1.0-beta.0",
"version": "1.1.0-beta.1",
"description": "A service bus for message-based, distributed node applications",

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

@@ -150,2 +150,8 @@ import { WorkflowState, WorkflowStatus } from '../workflow-state'

async dispose(): Promise<void> {
const isPrepared = this.persistence !== undefined
if (!isPrepared) {
// If the registry has not been prepared, then there is no logger or persistence available
return
}
this.logger.debug('Disposing workflow registry')

@@ -152,0 +158,0 @@ try {

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