Socket
Socket
Sign inDemoInstall

bpmnlint

Package Overview
Dependencies
Maintainers
3
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bpmnlint - npm Package Compare versions

Comparing version 3.3.0 to 3.3.1

4

CHANGELOG.md

@@ -9,2 +9,6 @@ # Changelog

## 3.3.1
* `FIX`: handle empty flow element containers in rules
## 3.3.0

@@ -11,0 +15,0 @@

2

package.json
{
"name": "bpmnlint",
"version": "3.3.0",
"version": "3.3.1",
"main": "lib/index.js",

@@ -5,0 +5,0 @@ "keywords": [

@@ -14,4 +14,6 @@ // verify that start events inside an event sub-process

node.flowElements.forEach(function(flowElement) {
const flowElements = node.flowElements || [];
flowElements.forEach(function(flowElement) {
if (!is(flowElement, 'bpmn:StartEvent')) {

@@ -18,0 +20,0 @@ return false;

@@ -14,4 +14,6 @@ // verify that there exists only a single blank

const blankStartEvents = node.flowElements.filter(function(flowElement) {
const flowElements = node.flowElements || [];
const blankStartEvents = flowElements.filter(function(flowElement) {
if (!is(flowElement, 'bpmn:StartEvent')) {

@@ -18,0 +20,0 @@ return false;

@@ -14,4 +14,6 @@ // verify that start events inside a normal sub-process

node.flowElements.forEach(function(flowElement) {
const flowElements = node.flowElements || [];
flowElements.forEach(function(flowElement) {
if (!is(flowElement, 'bpmn:StartEvent')) {

@@ -18,0 +20,0 @@ return false;

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