@crazyhappyone/auto-graph 0.0.1 → 0.0.21
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 +2 -2
- package/README.zh-CN.md +2 -2
- package/dist/cli/index.cjs +907 -69
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +906 -69
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +846 -76
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +87 -1
- package/dist/index.d.ts +87 -1
- package/dist/index.js +844 -77
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ The project is not a visual editor and not a renderer-first diagramming tool. It
|
|
|
9
9
|
## Install
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npm install auto-graph
|
|
12
|
+
npm install @crazyhappyone/auto-graph
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
The CLI command is `agh`.
|
|
@@ -46,7 +46,7 @@ import {
|
|
|
46
46
|
normalizeDiagramDsl,
|
|
47
47
|
parseDiagramDsl,
|
|
48
48
|
solveDiagram,
|
|
49
|
-
} from "auto-graph";
|
|
49
|
+
} from "@crazyhappyone/auto-graph";
|
|
50
50
|
|
|
51
51
|
const source = `
|
|
52
52
|
title: Architecture
|
package/README.zh-CN.md
CHANGED
|
@@ -9,7 +9,7 @@ auto-graph 是一个确定性的图形几何计算引擎。它把高层 YAML 或
|
|
|
9
9
|
## 安装
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npm install auto-graph
|
|
12
|
+
npm install @crazyhappyone/auto-graph
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
CLI 命令是 `agh`。
|
|
@@ -46,7 +46,7 @@ import {
|
|
|
46
46
|
normalizeDiagramDsl,
|
|
47
47
|
parseDiagramDsl,
|
|
48
48
|
solveDiagram,
|
|
49
|
-
} from "auto-graph";
|
|
49
|
+
} from "@crazyhappyone/auto-graph";
|
|
50
50
|
|
|
51
51
|
const source = `
|
|
52
52
|
title: Architecture
|