pruny 1.43.0 → 1.43.2
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.js +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12592,6 +12592,7 @@ var API_METHOD_PATTERNS = [
|
|
|
12592
12592
|
{ regex: /fetch\s*\(\s*`([^`]*?\/[^`]*)`/g, method: undefined },
|
|
12593
12593
|
{ regex: /['"`](\/api\/[^'"`\s]+)['"`]/g, method: undefined },
|
|
12594
12594
|
{ regex: /`([^`\n]*?\/api\/[^`\n]*)`/g, method: undefined },
|
|
12595
|
+
{ regex: /`[^`]*?(\/api\/[\w-]+(?:\/[\w-]+)*(?:\/\$\{[^}]+\})*)[^`]*?`/gs, method: undefined },
|
|
12595
12596
|
{ regex: /`([^`\n]*?(\/[\w-]{2,}\/[^`\n]*))`/g, method: undefined },
|
|
12596
12597
|
{ regex: /https?:\/\/[^/]+(\/[^'"`\s]*)/g, method: undefined },
|
|
12597
12598
|
{ regex: /['"`](\/[\w-]{2,}\/[^'"`\s]*)['"`]/g, method: undefined },
|
|
@@ -16532,7 +16533,9 @@ var DEFAULT_CONFIG = {
|
|
|
16532
16533
|
"**/.husky/**",
|
|
16533
16534
|
"**/.swc/**",
|
|
16534
16535
|
"**/generated/**",
|
|
16535
|
-
"**/storybook-static/**"
|
|
16536
|
+
"**/storybook-static/**",
|
|
16537
|
+
"**/ios/**",
|
|
16538
|
+
"**/android/**"
|
|
16536
16539
|
],
|
|
16537
16540
|
files: [],
|
|
16538
16541
|
links: []
|