bpmn-engine 19.0.0 → 20.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -3
- package/lib/index.cjs +769 -0
- package/package.json +23 -13
- package/{lib → src}/JavaScripts.js +7 -11
- package/{lib → src}/Logger.js +3 -5
- package/src/extensions/ProcessOutputDataObject.js +41 -0
- package/{lib → src}/getOptionsAndCallback.js +2 -4
- package/{index.js → src/index.js} +121 -91
- package/types/bpmn-engine.d.ts +45 -12
- package/CHANGELOG.md +0 -363
- package/lib/extensions/ProcessOutputDataObject.js +0 -27
package/README.md
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
bpmn-engine
|
|
2
|
-
===========
|
|
1
|
+
# bpmn-engine
|
|
3
2
|
|
|
4
3
|
[](https://www.repostatus.org/#active)
|
|
5
4
|
|
|
@@ -26,7 +25,25 @@ The aim is to, at least, have BPMN 2.0 [core support](https://www.omg.org/bpmn/S
|
|
|
26
25
|
|
|
27
26
|
# Debug
|
|
28
27
|
|
|
29
|
-
This package is shipped with [debug](https://github.com/
|
|
28
|
+
This package is shipped with [debug](https://github.com/debug-js/debug) activated with environment variable `DEBUG=bpmn-engine:*`. You can also provide your own logger.
|
|
29
|
+
|
|
30
|
+
More granular debugging can be achieved by filtering on element type:
|
|
31
|
+
|
|
32
|
+
```sh
|
|
33
|
+
DEBUG=*scripttask*,*:error:*
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
or on Windows PowerShell:
|
|
37
|
+
|
|
38
|
+
```powershell
|
|
39
|
+
$env:DEBUG='bpmn-engine:*'
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
and to turn it off you need to:
|
|
43
|
+
|
|
44
|
+
```powershell
|
|
45
|
+
$env:DEBUG=''
|
|
46
|
+
```
|
|
30
47
|
|
|
31
48
|
# A pretty image of a process
|
|
32
49
|
|