@ts-graphviz/ast 0.0.0-pr956-20240225160253 → 2.0.0
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 -4
- package/package.json +3 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# @ts-graphviz/ast
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 2.0.0
|
|
4
4
|
|
|
5
5
|
### Major Changes
|
|
6
6
|
|
|
7
|
-
- [`
|
|
7
|
+
- [#956](https://github.com/ts-graphviz/ts-graphviz/pull/956) [`1e4f57a`](https://github.com/ts-graphviz/ts-graphviz/commit/1e4f57aee8a97fa79240c002ef4925b0fa6a0548) Thanks [@kamiazya](https://github.com/kamiazya)! - # ts-graphviz v2
|
|
8
8
|
|
|
9
9
|
## Why?
|
|
10
10
|
|
|
@@ -296,5 +296,9 @@
|
|
|
296
296
|
|
|
297
297
|
### Patch Changes
|
|
298
298
|
|
|
299
|
-
-
|
|
300
|
-
|
|
299
|
+
- [#966](https://github.com/ts-graphviz/ts-graphviz/pull/966) [`d579034`](https://github.com/ts-graphviz/ts-graphviz/commit/d579034d3b834eceafa4aa290c0e0d4fd74a5192) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump vite-plugin-dts from 3.7.2 to 3.7.3
|
|
300
|
+
|
|
301
|
+
- [#970](https://github.com/ts-graphviz/ts-graphviz/pull/970) [`54f4565`](https://github.com/ts-graphviz/ts-graphviz/commit/54f45653d89640a16b6baa1a005e963b349fd2cd) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @types/node from 20.11.20 to 20.11.24
|
|
302
|
+
|
|
303
|
+
- Updated dependencies [[`d579034`](https://github.com/ts-graphviz/ts-graphviz/commit/d579034d3b834eceafa4aa290c0e0d4fd74a5192), [`54f4565`](https://github.com/ts-graphviz/ts-graphviz/commit/54f45653d89640a16b6baa1a005e963b349fd2cd), [`1e4f57a`](https://github.com/ts-graphviz/ts-graphviz/commit/1e4f57aee8a97fa79240c002ef4925b0fa6a0548)]:
|
|
304
|
+
- @ts-graphviz/common@2.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ts-graphviz/ast",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Graphviz AST(Abstract Syntax Tree) Utilities",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"homepage": "https://github.com/ts-graphviz/ts-graphviz#readme",
|
|
@@ -41,21 +41,15 @@
|
|
|
41
41
|
"main": "lib/ast.cjs",
|
|
42
42
|
"module": "lib/ast.js",
|
|
43
43
|
"types": "lib/ast.d.ts",
|
|
44
|
-
"files": [
|
|
45
|
-
"lib",
|
|
46
|
-
"README.md",
|
|
47
|
-
"CHANGELOG.md",
|
|
48
|
-
"LICENSE"
|
|
49
|
-
],
|
|
50
44
|
"dependencies": {
|
|
51
|
-
"@ts-graphviz/common": "^
|
|
45
|
+
"@ts-graphviz/common": "^2.0.0"
|
|
52
46
|
},
|
|
53
47
|
"devDependencies": {
|
|
54
48
|
"peggy": "^3.0.2",
|
|
55
49
|
"ts-pegjs": "^4.2.1",
|
|
56
50
|
"typescript": "^5.3.3",
|
|
57
51
|
"vite": "^5.1.3",
|
|
58
|
-
"vite-plugin-dts": "^3.7.
|
|
52
|
+
"vite-plugin-dts": "^3.7.3"
|
|
59
53
|
},
|
|
60
54
|
"engines": {
|
|
61
55
|
"node": ">=18"
|