@ts-graphviz/ast 2.0.5-next-de9727cbcc679b7fcf73a02f2c32cce791296215 → 2.0.5-next-b3a3323c70e72c87b7728684a5862b5d6e54fbb9

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,6 +1,6 @@
1
1
  # @ts-graphviz/ast
2
2
 
3
- ## 2.0.5-next-de9727cbcc679b7fcf73a02f2c32cce791296215
3
+ ## 2.0.5-next-b3a3323c70e72c87b7728684a5862b5d6e54fbb9
4
4
 
5
5
  ### Patch Changes
6
6
 
@@ -10,8 +10,10 @@
10
10
 
11
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
12
 
13
- - Updated dependencies [[`f48ae4a`](https://github.com/ts-graphviz/ts-graphviz/commit/f48ae4a36fde430cf4a4769189243acd76560946)]:
14
- - @ts-graphviz/common@2.1.4-next-de9727cbcc679b7fcf73a02f2c32cce791296215
13
+ - [#1214](https://github.com/ts-graphviz/ts-graphviz/pull/1214) [`b3a3323`](https://github.com/ts-graphviz/ts-graphviz/commit/b3a3323c70e72c87b7728684a5862b5d6e54fbb9) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump vite from 5.2.8 to 5.4.8
14
+
15
+ - Updated dependencies [[`f48ae4a`](https://github.com/ts-graphviz/ts-graphviz/commit/f48ae4a36fde430cf4a4769189243acd76560946), [`b3a3323`](https://github.com/ts-graphviz/ts-graphviz/commit/b3a3323c70e72c87b7728684a5862b5d6e54fbb9)]:
16
+ - @ts-graphviz/common@2.1.4-next-b3a3323c70e72c87b7728684a5862b5d6e54fbb9
15
17
 
16
18
  ## 2.0.4
17
19
 
package/lib/ast.cjs CHANGED
@@ -975,10 +975,6 @@ const peggyParser = (
975
975
  column: endPosDetails.column
976
976
  }
977
977
  };
978
- if (offset2 && peg$source && typeof peg$source.offset === "function") {
979
- res.start = peg$source.offset(res.start);
980
- res.end = peg$source.offset(res.end);
981
- }
982
978
  return res;
983
979
  }
984
980
  function peg$fail(expected2) {
package/lib/ast.js CHANGED
@@ -973,10 +973,6 @@ const peggyParser = (
973
973
  column: endPosDetails.column
974
974
  }
975
975
  };
976
- if (offset2 && peg$source && typeof peg$source.offset === "function") {
977
- res.start = peg$source.offset(res.start);
978
- res.end = peg$source.offset(res.end);
979
- }
980
976
  return res;
981
977
  }
982
978
  function peg$fail(expected2) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ts-graphviz/ast",
3
- "version": "2.0.5-next-de9727cbcc679b7fcf73a02f2c32cce791296215",
3
+ "version": "2.0.5-next-b3a3323c70e72c87b7728684a5862b5d6e54fbb9",
4
4
  "description": "Graphviz AST(Abstract Syntax Tree) Utilities",
5
5
  "keywords": [],
6
6
  "homepage": "https://github.com/ts-graphviz/ts-graphviz#readme",
@@ -37,13 +37,13 @@
37
37
  "module": "lib/ast.js",
38
38
  "types": "lib/ast.d.ts",
39
39
  "dependencies": {
40
- "@ts-graphviz/common": "^2.1.4-next-de9727cbcc679b7fcf73a02f2c32cce791296215"
40
+ "@ts-graphviz/common": "^2.1.4-next-b3a3323c70e72c87b7728684a5862b5d6e54fbb9"
41
41
  },
42
42
  "devDependencies": {
43
43
  "peggy": "^4.0.3",
44
44
  "ts-pegjs": "^4.2.1",
45
45
  "typescript": "^5.4.5",
46
- "vite": "^5.2.8",
46
+ "vite": "^5.4.8",
47
47
  "vite-plugin-dts": "^4.2.1"
48
48
  },
49
49
  "engines": {