object-diagram-js-differ 1.0.1 → 1.0.2
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 +5 -1
- package/dist/index.cjs +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/object-diagram-js-differ.js +1465 -0
- package/dist/object-diagram-js-differ.min.js +1 -0
- package/package.json +19 -18
- package/dist/object-diagram-js-differ.umd.cjs +0 -5941
package/README.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
Diffing for object diagrams adapted from bpmn-js-differ.
|
|
1
|
+
Diffing for object diagrams adapted from [bpmn-js-differ](https://github.com/bpmn-io/bpmn-js-differ).
|
|
2
|
+
|
|
3
|
+
The diffing tool is used to highlight changes while debugging in the [visual debugger plugin](https://plugins.jetbrains.com/plugin/16851-visual-debugger).
|
|
4
|
+
For example:
|
|
5
|
+

|
|
2
6
|
|
|
3
7
|
## License
|
|
4
8
|
|
package/dist/index.cjs
CHANGED