@ts-graphviz/ast 2.0.5-next-de9727cbcc679b7fcf73a02f2c32cce791296215 → 2.0.5-next-b44aa66d46a0a5240384e70b986ce3e7d0a02218
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 +7 -3
- package/lib/ast.cjs +0 -4
- package/lib/ast.js +0 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @ts-graphviz/ast
|
|
2
2
|
|
|
3
|
-
## 2.0.5-next-
|
|
3
|
+
## 2.0.5-next-b44aa66d46a0a5240384e70b986ce3e7d0a02218
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -10,8 +10,12 @@
|
|
|
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
|
-
-
|
|
14
|
-
|
|
13
|
+
- [#1213](https://github.com/ts-graphviz/ts-graphviz/pull/1213) [`b44aa66`](https://github.com/ts-graphviz/ts-graphviz/commit/b44aa66d46a0a5240384e70b986ce3e7d0a02218) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump vitest and @vitest/coverage-istanbul
|
|
14
|
+
|
|
15
|
+
- [#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
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [[`f48ae4a`](https://github.com/ts-graphviz/ts-graphviz/commit/f48ae4a36fde430cf4a4769189243acd76560946), [`b44aa66`](https://github.com/ts-graphviz/ts-graphviz/commit/b44aa66d46a0a5240384e70b986ce3e7d0a02218), [`b3a3323`](https://github.com/ts-graphviz/ts-graphviz/commit/b3a3323c70e72c87b7728684a5862b5d6e54fbb9)]:
|
|
18
|
+
- @ts-graphviz/common@2.1.4-next-b44aa66d46a0a5240384e70b986ce3e7d0a02218
|
|
15
19
|
|
|
16
20
|
## 2.0.4
|
|
17
21
|
|
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-
|
|
3
|
+
"version": "2.0.5-next-b44aa66d46a0a5240384e70b986ce3e7d0a02218",
|
|
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-
|
|
40
|
+
"@ts-graphviz/common": "^2.1.4-next-b44aa66d46a0a5240384e70b986ce3e7d0a02218"
|
|
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.
|
|
46
|
+
"vite": "^5.4.8",
|
|
47
47
|
"vite-plugin-dts": "^4.2.1"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|