dom-expressions 0.31.0 → 0.31.1
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/package.json +3 -3
- package/src/server.js +2 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dom-expressions",
|
|
3
3
|
"description": "A Fine-Grained Runtime for Performant DOM Rendering",
|
|
4
|
-
"version": "0.31.
|
|
4
|
+
"version": "0.31.1",
|
|
5
5
|
"author": "Ryan Carniato",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"devalue": "^2.0.1"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"babel-plugin-jsx-dom-expressions": "^0.31.
|
|
23
|
+
"babel-plugin-jsx-dom-expressions": "^0.31.1"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "4fbd532602dabd832935f53a936d42438b78b0bd"
|
|
26
26
|
}
|
package/src/server.js
CHANGED
|
@@ -428,6 +428,7 @@ function waitForFragments(registry, key) {
|
|
|
428
428
|
return false;
|
|
429
429
|
}
|
|
430
430
|
|
|
431
|
+
/* istanbul ignore next */
|
|
431
432
|
/**
|
|
432
433
|
* @deprecated Replaced by renderToStream
|
|
433
434
|
*/
|
|
@@ -445,6 +446,7 @@ export function pipeToNodeWritable(code, writable, options = {}) {
|
|
|
445
446
|
if (!options.onReady) stream.pipe(writable);
|
|
446
447
|
}
|
|
447
448
|
|
|
449
|
+
/* istanbul ignore next */
|
|
448
450
|
/**
|
|
449
451
|
* @deprecated Replaced by renderToStream
|
|
450
452
|
*/
|