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

bpmnlint-plugin-camunda

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bpmnlint-plugin-camunda - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

4

CHANGELOG.md

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

## 0.4.1
* `FIX`: correct `forking-conditions` after merging gateway
## 0.4.0

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

2

package.json
{
"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 = (

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