@diagrampilot/export-d2 0.2.16 → 0.3.0-nightly.97.1.1527baa

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-d2
2
2
 
3
- D2 export adapter for DiagramPilot.
3
+ D2 export adapter for validated DiagramSpec data.
4
4
 
5
- This package converts validated DiagramSpec data into D2 text. Most users
6
- should use `diagrampilot export <path> --format d2` through the CLI.
5
+ Most users should call the CLI:
7
6
 
8
- Public documentation:
7
+ ```bash
8
+ diagrampilot export <path> --format d2
9
+ ```
10
+
11
+ The CLI prints D2 text to stdout by default and writes only when `--out` is
12
+ 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-d2",
3
- "version": "0.2.16",
3
+ "version": "0.3.0-nightly.97.1.1527baa",
4
4
  "description": "D2 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-nightly.97.1.1527baa"
47
47
  }
48
48
  }