Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

bpmn-js-executable-fix

bpmn-io10.4kMIT0.2.1

bpmn-js extension which makes sure that isExecutable is set on bpmn:Process

readme

bpmn-js executable fix

CI

A bpmn-js extension that makes sure that isExecutable property is either true or false for each bpmn:Process.

Installation

Install via npm.

npm install bpmn-js-executable-fix

Add as additional module to bpmn-js.

Modeler

import BpmnModeler from 'bpmn-js/lib/Modeler';
import executableFixModule from 'bpmn-js-executable-fix';

const modeler = new BpmnModeler({
  container: '#canvas',
  additionalModules: [
    executableFixModule
  ]
});

Licence

MIT