preact-render-to-string 6.5.3 → 6.5.4

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.
@@ -12,7 +12,7 @@ interface PipeableStream {
12
12
  pipe: (writable: WritableStream) => void;
13
13
  }
14
14
 
15
- export function renderToReadableStream(
15
+ export function renderToPipeableStream(
16
16
  vnode: VNode,
17
17
  options: RenderToPipeableStreamOptions,
18
18
  context?: any
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "preact-render-to-string",
3
3
  "amdName": "preactRenderToString",
4
- "version": "6.5.3",
4
+ "version": "6.5.4",
5
5
  "description": "Render JSX to an HTML string, with support for Preact components.",
6
6
  "main": "dist/index.js",
7
7
  "umd:main": "dist/index.umd.js",
@@ -12,7 +12,7 @@ interface PipeableStream {
12
12
  pipe: (writable: WritableStream) => void;
13
13
  }
14
14
 
15
- export function renderToReadableStream(
15
+ export function renderToPipeableStream(
16
16
  vnode: VNode,
17
17
  options: RenderToPipeableStreamOptions,
18
18
  context?: any