libpetri 2.10.3 → 2.10.4

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/dist/index.js CHANGED
@@ -2328,6 +2328,9 @@ function rebuildWithAction(t, action) {
2328
2328
  for (const r of t.resets) {
2329
2329
  builder.reset(r.place);
2330
2330
  }
2331
+ if (t.matchSpec !== null) {
2332
+ builder.match(t.matchSpec);
2333
+ }
2331
2334
  return builder.build();
2332
2335
  }
2333
2336