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.
Files changed (2) hide show
  1. package/README.md +5 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # mermaid-to-excalidraw-cli
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/mermaid-to-excalidraw-cli)](https://www.npmjs.com/package/mermaid-to-excalidraw-cli)
3
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
4
5
  [![GitHub issues](https://img.shields.io/github/issues/ayurkin/mermaid-to-excalidraw-cli)](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 global usage:
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mermaid-to-excalidraw-cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Convert Mermaid (.mmd) to Excalidraw (.excalidraw) using headless Chromium.",
5
5
  "license": "MIT",
6
6
  "author": "Aleksandr Yurkin <alx.yurkin@gmail.com>",