state-machine-cat 12.0.2 → 12.0.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/README.md +4 -4
- package/dist/version.mjs +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -78,13 +78,13 @@ Options:
|
|
|
78
78
|
... so to convert the above chart to `sample.svg`
|
|
79
79
|
|
|
80
80
|
```sh
|
|
81
|
-
|
|
81
|
+
smcat docs/sample.smcat
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
Or, if you'd rather pull dot output through GraphViz dot yourself:
|
|
85
85
|
|
|
86
86
|
```sh
|
|
87
|
-
|
|
87
|
+
smcat -T dot docs/sample.smcat -o - | dot -T svg -odoc/sample.svg
|
|
88
88
|
```
|
|
89
89
|
|
|
90
90
|
Leaving the options at the default settings usually deliver the best
|
|
@@ -108,7 +108,7 @@ get a transparent background and draw edges as line segments instead of
|
|
|
108
108
|
splines, use this:
|
|
109
109
|
|
|
110
110
|
```sh
|
|
111
|
-
|
|
111
|
+
smcat --dot-graph-attrs "bgcolor=transparent splines=line" docs/sample.smcat
|
|
112
112
|
```
|
|
113
113
|
|
|
114
114
|
### Syntax highlighting
|
|
@@ -637,7 +637,7 @@ I made the parser with peggy - you can find it at
|
|
|
637
637
|
- Thoroughly tested and good enough for public use.
|
|
638
638
|
- Despite this you might bump into the occasional issue - don't hesitate to
|
|
639
639
|
report it on [GitHub](https://github.com/sverweij/state-machine-cat/issues).
|
|
640
|
-
- Runs on latest versions of firefox, safari and chrome and node versions >=
|
|
640
|
+
- Runs on latest versions of firefox, safari and chrome and node versions >= 18.17.0
|
|
641
641
|
Although it might run on other environments, it's not tested there. I will
|
|
642
642
|
reject issues on these other environments, unless they're accompanied with
|
|
643
643
|
sufficient enticement to make it worth my while.
|
package/dist/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = "12.0.
|
|
1
|
+
export const version = "12.0.4";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "state-machine-cat",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.4",
|
|
4
4
|
"description": "write beautiful state charts",
|
|
5
5
|
"main": "./dist/index.mjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
"state-machine-cat": "bin/smcat.mjs"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@hpcc-js/wasm": "2.
|
|
51
|
+
"@hpcc-js/wasm": "2.15.3",
|
|
52
52
|
"ajv": "8.12.0",
|
|
53
53
|
"commander": "11.1.0",
|
|
54
54
|
"fast-xml-parser": "4.3.2",
|
|
55
55
|
"handlebars": "4.7.8",
|
|
56
56
|
"he": "1.2.0",
|
|
57
57
|
"semver": "^7.5.4",
|
|
58
|
-
"traverse": "0.6.
|
|
58
|
+
"traverse": "0.6.8"
|
|
59
59
|
},
|
|
60
60
|
"engines": {
|
|
61
61
|
"node": "^18.17||>=20"
|