@diagrampilot/export-mermaid 0.2.16 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +11 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,11 +1,17 @@
1
1
  # @diagrampilot/export-mermaid
2
2
 
3
- Mermaid export adapter for DiagramPilot.
3
+ Mermaid export adapter for validated DiagramSpec data.
4
4
 
5
- This package converts validated DiagramSpec data into Mermaid text. Most users
6
- should use `diagrampilot export <path> --format mermaid` through the CLI.
5
+ Most users should call the CLI:
7
6
 
8
- Public documentation:
7
+ ```bash
8
+ diagrampilot export <path> --format mermaid
9
+ ```
10
+
11
+ The CLI prints Mermaid text to stdout by default and writes only when `--out`
12
+ is provided.
9
13
 
10
- - https://diagrampilot.com/docs/agents/examples.md
14
+ Public documentation:
11
15
 
16
+ - https://diagrampilot.com/docs/agents/quickstart.md
17
+ - https://diagrampilot.com/docs/agents/spec.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diagrampilot/export-mermaid",
3
- "version": "0.2.16",
3
+ "version": "0.3.0",
4
4
  "description": "Mermaid export adapter for DiagramPilot.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -43,6 +43,6 @@
43
43
  "build": "tsc -b"
44
44
  },
45
45
  "dependencies": {
46
- "@diagrampilot/core": "0.2.16"
46
+ "@diagrampilot/core": "0.3.0"
47
47
  }
48
48
  }