Skip to content

Commit

Permalink
6f9a764 docs: fix relative link to README not working on npm repo (#2…
Browse files Browse the repository at this point in the history
…9496)
  • Loading branch information
Angular Builds committed Jan 28, 2025
1 parent 270320c commit 1c8e330
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion fesm2022/node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,10 @@ async function writeResponseToNodeResponse(source, destination) {
destination.end();
break;
}
destination.write(value);
const canContinue = destination.write(value);
if (!canContinue) {
await new Promise((resolve) => destination.once('drain', resolve));
}
}
}
catch {
Expand Down
2 changes: 1 addition & 1 deletion fesm2022/node.mjs.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular/ssr",
"version": "19.2.0-next.0+sha-694ef8e",
"version": "19.2.0-next.0+sha-6f9a764",
"description": "Angular server side rendering utilities",
"type": "module",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion uniqueId
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Mon Jan 27 2025 17:41:24 GMT+0000 (Coordinated Universal Time)
Tue Jan 28 2025 08:18:21 GMT+0000 (Coordinated Universal Time)

0 comments on commit 1c8e330

Please sign in to comment.