react-markup 0.0.0-experimental-de68d2f4-20241204 → 0.0.0-experimental-1c9b1387-20241204
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.
|
@@ -727,9 +727,8 @@
|
|
|
727
727
|
1
|
|
728
728
|
);
|
|
729
729
|
request.pendingChunks++;
|
|
730
|
-
var
|
|
731
|
-
|
|
732
|
-
emitConsoleChunk(request, id, methodName, owner, stack, arguments);
|
|
730
|
+
var owner = resolveOwner();
|
|
731
|
+
emitConsoleChunk(request, methodName, owner, stack, arguments);
|
|
733
732
|
}
|
|
734
733
|
return originalMethod.apply(this, arguments);
|
|
735
734
|
};
|
|
@@ -2442,14 +2441,7 @@
|
|
|
2442
2441
|
request.completedRegularChunks.push(json);
|
|
2443
2442
|
return model;
|
|
2444
2443
|
}
|
|
2445
|
-
function emitConsoleChunk(
|
|
2446
|
-
request,
|
|
2447
|
-
id,
|
|
2448
|
-
methodName,
|
|
2449
|
-
owner,
|
|
2450
|
-
stackTrace,
|
|
2451
|
-
args
|
|
2452
|
-
) {
|
|
2444
|
+
function emitConsoleChunk(request, methodName, owner, stackTrace, args) {
|
|
2453
2445
|
function replacer(parentPropertyName, value) {
|
|
2454
2446
|
try {
|
|
2455
2447
|
return renderConsoleValue(
|
|
@@ -2486,8 +2478,7 @@
|
|
|
2486
2478
|
replacer
|
|
2487
2479
|
);
|
|
2488
2480
|
}
|
|
2489
|
-
|
|
2490
|
-
request.completedRegularChunks.push(id);
|
|
2481
|
+
request.completedRegularChunks.push(":W" + json + "\n");
|
|
2491
2482
|
}
|
|
2492
2483
|
function forwardDebugInfo(request, id, debugInfo) {
|
|
2493
2484
|
for (var i = 0; i < debugInfo.length; i++)
|
|
@@ -13178,5 +13169,5 @@
|
|
|
13178
13169
|
});
|
|
13179
13170
|
});
|
|
13180
13171
|
};
|
|
13181
|
-
exports.version = "19.0.0-experimental-
|
|
13172
|
+
exports.version = "19.0.0-experimental-1c9b1387-20241204";
|
|
13182
13173
|
})();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-markup",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-1c9b1387-20241204",
|
|
4
4
|
"description": "React package generating embedded markup such as e-mails with support for Server Components.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://react.dev/",
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"react": "0.0.0-experimental-
|
|
20
|
+
"react": "0.0.0-experimental-1c9b1387-20241204"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"LICENSE",
|