@impakers/debug 1.3.10 → 1.3.11

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 CHANGED
@@ -1388,6 +1388,8 @@ function parseComponentFrame(stack) {
1388
1388
  /source-location/,
1389
1389
  /\/dist\/index\./,
1390
1390
  // Our bundled output (dist/index.mjs, dist/index.js)
1391
+ /\/dist\/react\./,
1392
+ // Our React bundled output
1391
1393
  /node_modules\//,
1392
1394
  // Any package in node_modules (dev mode)
1393
1395
  /react-dom/,
@@ -1402,26 +1404,24 @@ function parseComponentFrame(stack) {
1402
1404
  ];
1403
1405
  const v8Re = /^\s*at\s+(?:.*?\s+\()?(.+?):(\d+):(\d+)\)?$/;
1404
1406
  const webkitRe = /^[^@]*@(.+?):(\d+):(\d+)$/;
1405
- let lastValid = null;
1407
+ let validCount = 0;
1406
1408
  for (const line of lines) {
1407
1409
  const trimmed = line.trim();
1408
1410
  if (!trimmed) continue;
1409
- if (skipPatterns.some((p) => p.test(trimmed))) {
1410
- if (/at <anonymous>:/.test(trimmed) && lastValid) {
1411
- return lastValid;
1412
- }
1413
- continue;
1414
- }
1411
+ if (skipPatterns.some((p) => p.test(trimmed))) continue;
1415
1412
  const match = v8Re.exec(trimmed) || webkitRe.exec(trimmed);
1416
1413
  if (match) {
1417
- lastValid = {
1418
- fileName: match[1],
1419
- line: parseInt(match[2], 10),
1420
- column: parseInt(match[3], 10)
1421
- };
1414
+ validCount++;
1415
+ if (validCount >= 3) {
1416
+ return {
1417
+ fileName: match[1],
1418
+ line: parseInt(match[2], 10),
1419
+ column: parseInt(match[3], 10)
1420
+ };
1421
+ }
1422
1422
  }
1423
1423
  }
1424
- return lastValid;
1424
+ return null;
1425
1425
  }
1426
1426
  function cleanSourcePath(rawPath) {
1427
1427
  let path = rawPath;