@ts-graphviz/ast 2.0.5-next-026e7d1a8f96034e4475bbc8626a8be8fa7b925c → 2.0.5-next-6bb5ab18682daa1410de4a35edc22316487989af
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/CHANGELOG.md +8 -1
- package/lib/ast.cjs +1 -1
- package/lib/ast.d.ts +9 -9
- package/lib/ast.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
# @ts-graphviz/ast
|
|
2
2
|
|
|
3
|
-
## 2.0.5-next-
|
|
3
|
+
## 2.0.5-next-6bb5ab18682daa1410de4a35edc22316487989af
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- [#1204](https://github.com/ts-graphviz/ts-graphviz/pull/1204) [`03bafa0`](https://github.com/ts-graphviz/ts-graphviz/commit/03bafa0e10b43807b5568df4ffba720752a0ac02) Thanks [@kamiazya](https://github.com/kamiazya)! - Fix string escaping in DOT language
|
|
8
8
|
|
|
9
|
+
- [#1183](https://github.com/ts-graphviz/ts-graphviz/pull/1183) [`6bb5ab1`](https://github.com/ts-graphviz/ts-graphviz/commit/6bb5ab18682daa1410de4a35edc22316487989af) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump peggy from 4.0.2 to 4.0.3
|
|
10
|
+
|
|
11
|
+
- [#1179](https://github.com/ts-graphviz/ts-graphviz/pull/1179) [`f48ae4a`](https://github.com/ts-graphviz/ts-graphviz/commit/f48ae4a36fde430cf4a4769189243acd76560946) Thanks [@kamiazya](https://github.com/kamiazya)! - build(deps-dev): bump vite-plugin-dts from 3.9.1 to 4.2.1
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [[`f48ae4a`](https://github.com/ts-graphviz/ts-graphviz/commit/f48ae4a36fde430cf4a4769189243acd76560946)]:
|
|
14
|
+
- @ts-graphviz/common@2.1.4-next-6bb5ab18682daa1410de4a35edc22316487989af
|
|
15
|
+
|
|
9
16
|
## 2.0.4
|
|
10
17
|
|
|
11
18
|
### Patch Changes
|
package/lib/ast.cjs
CHANGED
package/lib/ast.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
1
|
+
import { ASTType } from '@ts-graphviz/common';
|
|
2
|
+
import { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
+
import { Compass } from '@ts-graphviz/common';
|
|
4
|
+
import { DotObjectModel } from '@ts-graphviz/common';
|
|
5
|
+
import { EdgeModel } from '@ts-graphviz/common';
|
|
6
|
+
import { ModelsContext } from '@ts-graphviz/common';
|
|
7
|
+
import { NodeModel } from '@ts-graphviz/common';
|
|
8
|
+
import { RootGraphModel } from '@ts-graphviz/common';
|
|
9
|
+
import { SubgraphModel } from '@ts-graphviz/common';
|
|
10
10
|
|
|
11
11
|
declare interface AnyExpectation {
|
|
12
12
|
type: "any";
|
package/lib/ast.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ts-graphviz/ast",
|
|
3
|
-
"version": "2.0.5-next-
|
|
3
|
+
"version": "2.0.5-next-6bb5ab18682daa1410de4a35edc22316487989af",
|
|
4
4
|
"description": "Graphviz AST(Abstract Syntax Tree) Utilities",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"homepage": "https://github.com/ts-graphviz/ts-graphviz#readme",
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"module": "lib/ast.js",
|
|
38
38
|
"types": "lib/ast.d.ts",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@ts-graphviz/common": "^2.1.
|
|
40
|
+
"@ts-graphviz/common": "^2.1.4-next-6bb5ab18682daa1410de4a35edc22316487989af"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"peggy": "^4.0.
|
|
43
|
+
"peggy": "^4.0.3",
|
|
44
44
|
"ts-pegjs": "^4.2.1",
|
|
45
45
|
"typescript": "^5.4.5",
|
|
46
46
|
"vite": "^5.2.8",
|
|
47
|
-
"vite-plugin-dts": "^
|
|
47
|
+
"vite-plugin-dts": "^4.2.1"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=18"
|