@ts-graphviz/ast 2.0.5-next-026e7d1a8f96034e4475bbc8626a8be8fa7b925c → 2.0.5-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7

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 CHANGED
@@ -1,11 +1,18 @@
1
1
  # @ts-graphviz/ast
2
2
 
3
- ## 2.0.5-next-026e7d1a8f96034e4475bbc8626a8be8fa7b925c
3
+ ## 2.0.5-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7
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-d0b54a18248207de01f60c17dcd24b13ee4f03d7
15
+
9
16
  ## 2.0.4
10
17
 
11
18
  ### Patch Changes
package/lib/ast.cjs CHANGED
@@ -327,7 +327,7 @@ function stringify(ast, options) {
327
327
  return result;
328
328
  }
329
329
  const peggyParser = (
330
- // @generated by Peggy 4.0.2.
330
+ // @generated by Peggy 4.0.3.
331
331
  //
332
332
  // https://peggyjs.org/
333
333
  // @ts-ignore
package/lib/ast.d.ts CHANGED
@@ -1,12 +1,12 @@
1
- import type { ASTType } from '@ts-graphviz/common';
2
- import type { AttributeKey } from '@ts-graphviz/common';
3
- import type { Compass } from '@ts-graphviz/common';
4
- import type { DotObjectModel } from '@ts-graphviz/common';
5
- import type { EdgeModel } from '@ts-graphviz/common';
6
- import type { ModelsContext } from '@ts-graphviz/common';
7
- import type { NodeModel } from '@ts-graphviz/common';
8
- import type { RootGraphModel } from '@ts-graphviz/common';
9
- import type { SubgraphModel } from '@ts-graphviz/common';
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
@@ -325,7 +325,7 @@ function stringify(ast, options) {
325
325
  return result;
326
326
  }
327
327
  const peggyParser = (
328
- // @generated by Peggy 4.0.2.
328
+ // @generated by Peggy 4.0.3.
329
329
  //
330
330
  // https://peggyjs.org/
331
331
  // @ts-ignore
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ts-graphviz/ast",
3
- "version": "2.0.5-next-026e7d1a8f96034e4475bbc8626a8be8fa7b925c",
3
+ "version": "2.0.5-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7",
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.3"
40
+ "@ts-graphviz/common": "^2.1.4-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7"
41
41
  },
42
42
  "devDependencies": {
43
- "peggy": "^4.0.2",
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": "^3.7.3"
47
+ "vite-plugin-dts": "^4.2.1"
48
48
  },
49
49
  "engines": {
50
50
  "node": ">=18"