@impakers/debug 1.3.9 → 1.3.10
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/dist/react.js +12 -0
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +12 -0
- package/dist/react.mjs.map +1 -1
- package/package.json +1 -1
package/dist/react.js
CHANGED
|
@@ -1446,6 +1446,9 @@ function probeComponentSource(fiber) {
|
|
|
1446
1446
|
}
|
|
1447
1447
|
const dispatcher = getReactDispatcher();
|
|
1448
1448
|
if (!dispatcher) {
|
|
1449
|
+
if (typeof window !== "undefined" && window.__IMPAKERS_DEBUG_LOG) {
|
|
1450
|
+
console.log("[impakers-debug] dispatcher not found, skipping probe");
|
|
1451
|
+
}
|
|
1449
1452
|
sourceProbeCache.set(fn, null);
|
|
1450
1453
|
return null;
|
|
1451
1454
|
}
|
|
@@ -1465,7 +1468,13 @@ function probeComponentSource(fiber) {
|
|
|
1465
1468
|
fn({});
|
|
1466
1469
|
} catch (e) {
|
|
1467
1470
|
if (e instanceof Error && e.stack) {
|
|
1471
|
+
if (typeof window !== "undefined" && window.__IMPAKERS_DEBUG_LOG) {
|
|
1472
|
+
console.log("[impakers-debug] probe stack:", e.stack);
|
|
1473
|
+
}
|
|
1468
1474
|
const frame = parseComponentFrame(e.stack);
|
|
1475
|
+
if (typeof window !== "undefined" && window.__IMPAKERS_DEBUG_LOG) {
|
|
1476
|
+
console.log("[impakers-debug] parsed frame:", frame);
|
|
1477
|
+
}
|
|
1469
1478
|
if (frame) {
|
|
1470
1479
|
const cleaned = cleanSourcePath(frame.fileName);
|
|
1471
1480
|
result = {
|
|
@@ -1522,6 +1531,9 @@ function getSourceLocation(element) {
|
|
|
1522
1531
|
};
|
|
1523
1532
|
}
|
|
1524
1533
|
const probed = probeSourceWalk(fiber);
|
|
1534
|
+
if (typeof window !== "undefined" && window.__IMPAKERS_DEBUG_LOG) {
|
|
1535
|
+
console.log("[impakers-debug] probe result:", probed);
|
|
1536
|
+
}
|
|
1525
1537
|
if (probed) {
|
|
1526
1538
|
return { found: true, source: probed, isReactApp: true, isProduction: false };
|
|
1527
1539
|
}
|