bpmn-engine 19.0.1 → 20.0.1

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 CHANGED
@@ -1,9 +1,8 @@
1
- bpmn-engine
2
- ===========
1
+ # bpmn-engine
3
2
 
4
3
  [![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
5
4
 
6
- [![Build Status](https://app.travis-ci.com/paed01/bpmn-engine.svg?branch=master)](https://app.travis-ci.com/paed01/bpmn-engine)[![Build status](https://ci.appveyor.com/api/projects/status/670n39fivq1g3nu5?svg=true)](https://ci.appveyor.com/project/paed01/bpmn-engine)[![Coverage Status](https://coveralls.io/repos/github/paed01/bpmn-engine/badge.svg?branch=master)](https://coveralls.io/github/paed01/bpmn-engine?branch=master)
5
+ [![Build](https://github.com/paed01/bpmn-engine/actions/workflows/build.yaml/badge.svg)](https://github.com/paed01/bpmn-engine/actions/workflows/build.yaml)[![Build status](https://ci.appveyor.com/api/projects/status/670n39fivq1g3nu5?svg=true)](https://ci.appveyor.com/project/paed01/bpmn-engine)[![Coverage Status](https://coveralls.io/repos/github/paed01/bpmn-engine/badge.svg?branch=master)](https://coveralls.io/github/paed01/bpmn-engine?branch=master)
7
6
 
8
7
  # Introduction
9
8
 
@@ -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/visionmedia/debug) activated with environment variable `DEBUG=bpmn-engine:*`. You can also provide your own logger.
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