@lark-apaas/devtool-kits 0.1.0-alpha.3 → 0.1.0-alpha.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.
package/dist/index.cjs CHANGED
@@ -28714,7 +28714,7 @@ function matchesPathPattern(actualPath, pattern) {
28714
28714
  const regex = pathPatternToRegex(normalizedPattern);
28715
28715
  return regex.test(normalizedActual);
28716
28716
  }
28717
- return normalizedActual.startsWith(normalizedPattern + "/") || normalizedActual === normalizedPattern;
28717
+ return false;
28718
28718
  }
28719
28719
  __name(matchesPathPattern, "matchesPathPattern");
28720
28720
  function hasSpecialPatterns(pattern) {