bpmnlint-plugin-camunda
Advanced tools
Comparing version 0.4.0 to 0.4.1
@@ -9,2 +9,6 @@ # Changelog | ||
## 0.4.1 | ||
* `FIX`: correct `forking-conditions` after merging gateway | ||
## 0.4.0 | ||
@@ -11,0 +15,0 @@ |
{ | ||
"name": "bpmnlint-plugin-camunda", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "Camunda modeling guidelines, packed as a bpmnlint plug-in", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -14,8 +14,8 @@ const { | ||
if (!is(node, 'bpmn:ExclusiveGateway')) { | ||
const outgoing = node.outgoing || []; | ||
if (!is(node, 'bpmn:ExclusiveGateway') || outgoing.length < 2) { | ||
return; | ||
} | ||
const outgoing = node.outgoing || []; | ||
outgoing.forEach((flow) => { | ||
@@ -22,0 +22,0 @@ const missingCondition = ( |
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
98814
1