mermaid-to-excalidraw-cli 0.1.1 → 0.1.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 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# mermaid-to-excalidraw-cli
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/mermaid-to-excalidraw-cli)
|
|
3
4
|
[](LICENSE)
|
|
4
5
|
[](https://github.com/ayurkin/mermaid-to-excalidraw-cli/issues)
|
|
5
6
|
|
|
@@ -20,22 +21,18 @@ Convert Mermaid (`.mmd`) diagrams into Excalidraw (`.excalidraw`) using a headle
|
|
|
20
21
|
## Install
|
|
21
22
|
|
|
22
23
|
```bash
|
|
23
|
-
npm install
|
|
24
|
+
npm install -g mermaid-to-excalidraw-cli
|
|
24
25
|
npx playwright install chromium
|
|
25
26
|
```
|
|
26
27
|
|
|
27
|
-
For
|
|
28
|
+
For local development:
|
|
28
29
|
|
|
29
30
|
```bash
|
|
31
|
+
npm install
|
|
32
|
+
npx playwright install chromium
|
|
30
33
|
npm link
|
|
31
34
|
```
|
|
32
35
|
|
|
33
|
-
After publishing to npm:
|
|
34
|
-
|
|
35
|
-
```bash
|
|
36
|
-
npm install -g mermaid-to-excalidraw-cli
|
|
37
|
-
```
|
|
38
|
-
|
|
39
36
|
## Usage
|
|
40
37
|
|
|
41
38
|
```bash
|
package/package.json
CHANGED