ts-graphviz 1.5.3-dev.3abfe14cf → 1.5.3-dev.c5af75171
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/README.md +4 -0
- package/lib/adapter/node/index.cjs +2 -0
- package/lib/adapter/node/index.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -541,6 +541,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
541
541
|
<tr>
|
|
542
542
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/robross0606"><img src="https://avatars.githubusercontent.com/u/2965467?v=4?s=100" width="100px;" alt="robross0606"/><br /><sub><b>robross0606</b></sub></a><br /><a href="#ideas-robross0606" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
543
543
|
<td align="center" valign="top" width="14.28%"><a href="https://blake-regalia.net"><img src="https://avatars.githubusercontent.com/u/1456400?v=4?s=100" width="100px;" alt="Blake Regalia"/><br /><sub><b>Blake Regalia</b></sub></a><br /><a href="https://github.com/ts-graphviz/ts-graphviz/issues?q=author%3Ablake-regalia" title="Bug reports">🐛</a></td>
|
|
544
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bigbug"><img src="https://avatars.githubusercontent.com/u/27259?v=4?s=100" width="100px;" alt="bigbug"/><br /><sub><b>bigbug</b></sub></a><br /><a href="#question-bigbug" title="Answering Questions">💬</a></td>
|
|
545
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/murawakimitsuhiro"><img src="https://avatars.githubusercontent.com/u/13833242?v=4?s=100" width="100px;" alt="mrwk"/><br /><sub><b>mrwk</b></sub></a><br /><a href="#question-murawakimitsuhiro" title="Answering Questions">💬</a></td>
|
|
546
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/svdvonde"><img src="https://avatars.githubusercontent.com/u/2751783?v=4?s=100" width="100px;" alt="svdvonde"/><br /><sub><b>svdvonde</b></sub></a><br /><a href="#question-svdvonde" title="Answering Questions">💬</a></td>
|
|
547
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/seethroughdev"><img src="https://avatars.githubusercontent.com/u/203779?v=4?s=100" width="100px;" alt="Adam"/><br /><sub><b>Adam</b></sub></a><br /><a href="#question-seethroughdev" title="Answering Questions">💬</a></td>
|
|
544
548
|
</tr>
|
|
545
549
|
</tbody>
|
|
546
550
|
</table>
|
|
@@ -29,7 +29,9 @@ async function toStream(dot, options) {
|
|
|
29
29
|
);
|
|
30
30
|
});
|
|
31
31
|
const stderrChunks = [];
|
|
32
|
+
p.stdout.on('pause', () => p.stdout.resume());
|
|
32
33
|
p.stderr.on('data', (chunk) => stderrChunks.push(chunk));
|
|
34
|
+
p.stderr.on('pause', () => p.stderr.resume());
|
|
33
35
|
const dist = p.stdout.pipe(new node_stream.PassThrough());
|
|
34
36
|
p.on('close', async (code, signal) => {
|
|
35
37
|
if (code === 0) {
|
|
@@ -27,7 +27,9 @@ async function toStream(dot, options) {
|
|
|
27
27
|
);
|
|
28
28
|
});
|
|
29
29
|
const stderrChunks = [];
|
|
30
|
+
p.stdout.on('pause', () => p.stdout.resume());
|
|
30
31
|
p.stderr.on('data', (chunk) => stderrChunks.push(chunk));
|
|
32
|
+
p.stderr.on('pause', () => p.stderr.resume());
|
|
31
33
|
const dist = p.stdout.pipe(new PassThrough());
|
|
32
34
|
p.on('close', async (code, signal) => {
|
|
33
35
|
if (code === 0) {
|
package/package.json
CHANGED