ts-graphviz 2.1.6-next-c043ba9bcc5194a89b976df1609c4e9875300f1e → 2.1.6
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 +3 -3
- package/LICENSE +1 -2
- package/README.md +3 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# ts-graphviz
|
|
2
2
|
|
|
3
|
-
## 2.1.6
|
|
3
|
+
## 2.1.6
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies [[`c043ba9`](https://github.com/ts-graphviz/ts-graphviz/commit/c043ba9bcc5194a89b976df1609c4e9875300f1e)]:
|
|
8
|
-
- @ts-graphviz/ast@2.0.7
|
|
9
|
-
- @ts-graphviz/core@2.0.7
|
|
8
|
+
- @ts-graphviz/ast@2.0.7
|
|
9
|
+
- @ts-graphviz/core@2.0.7
|
|
10
10
|
|
|
11
11
|
## 2.1.5
|
|
12
12
|
|
package/LICENSE
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
1
|
The MIT License (MIT)
|
|
3
2
|
|
|
4
|
-
Copyright (c) 2019-
|
|
3
|
+
Copyright (c) 2019-2025 Yuki Yamazaki
|
|
5
4
|
|
|
6
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -662,6 +662,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
662
662
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/haved"><img src="https://avatars.githubusercontent.com/u/3748845?v=4?s=100" width="100px;" alt="HKrogstie"/><br /><sub><b>HKrogstie</b></sub></a><br /><a href="https://github.com/ts-graphviz/ts-graphviz/issues?q=author%3Ahaved" title="Bug reports">🐛</a></td>
|
|
663
663
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/septatrix"><img src="https://avatars.githubusercontent.com/u/24257556?v=4?s=100" width="100px;" alt="Nils K"/><br /><sub><b>Nils K</b></sub></a><br /><a href="https://github.com/ts-graphviz/ts-graphviz/issues?q=author%3Aseptatrix" title="Bug reports">🐛</a></td>
|
|
664
664
|
</tr>
|
|
665
|
+
<tr>
|
|
666
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hao2013"><img src="https://avatars.githubusercontent.com/u/67059492?v=4?s=100" width="100px;" alt="hao2013"/><br /><sub><b>hao2013</b></sub></a><br /><a href="#maintenance-hao2013" title="Maintenance">🚧</a> <a href="https://github.com/ts-graphviz/ts-graphviz/pulls?q=is%3Apr+reviewed-by%3Ahao2013" title="Reviewed Pull Requests">👀</a></td>
|
|
667
|
+
</tr>
|
|
665
668
|
</tbody>
|
|
666
669
|
</table>
|
|
667
670
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-graphviz",
|
|
3
|
-
"version": "2.1.6
|
|
3
|
+
"version": "2.1.6",
|
|
4
4
|
"description": "Graphviz library for TypeScript",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"graphviz",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"types": "lib/ts-graphviz.d.ts",
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@ts-graphviz/adapter": "^2.0.6",
|
|
55
|
-
"@ts-graphviz/ast": "^2.0.7
|
|
55
|
+
"@ts-graphviz/ast": "^2.0.7",
|
|
56
56
|
"@ts-graphviz/common": "^2.1.5",
|
|
57
|
-
"@ts-graphviz/core": "^2.0.7
|
|
57
|
+
"@ts-graphviz/core": "^2.0.7"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"typescript": "^5.4.5",
|