react-native-inapp-inspector 2.3.7 → 2.3.8
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/commonjs/constants/version.d.ts +1 -1
- package/dist/commonjs/constants/version.js +1 -1
- package/dist/commonjs/customHooks/networkLogger.js +2 -0
- package/dist/esm/constants/version.d.ts +1 -1
- package/dist/esm/constants/version.js +1 -1
- package/dist/esm/customHooks/networkLogger.js +2 -0
- package/package.json +1 -1
- package/src/constants/version.ts +1 -1
- package/src/customHooks/networkLogger.ts +2 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "2.3.
|
|
1
|
+
export declare const LIB_VERSION = "2.3.8";
|
|
@@ -31,6 +31,8 @@ const IGNORED_URL_PATTERNS = [
|
|
|
31
31
|
/\/status(?:\?|$)/i,
|
|
32
32
|
/127\.0\.0\.1:(?:8081|8082|8083|19000|19001|19002|3000|8000)/i,
|
|
33
33
|
/localhost:(?:8081|8082|8083|19000|19001|19002|3000|8000)\/index\.bundle/i,
|
|
34
|
+
/google-analytics\.com\/mp\/collect/i,
|
|
35
|
+
/analytics\.google\.com/i,
|
|
34
36
|
];
|
|
35
37
|
function shouldIgnoreUrl(url) {
|
|
36
38
|
if (!url)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "2.3.
|
|
1
|
+
export declare const LIB_VERSION = "2.3.8";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const LIB_VERSION = '2.3.
|
|
1
|
+
export const LIB_VERSION = '2.3.8';
|
|
@@ -22,6 +22,8 @@ const IGNORED_URL_PATTERNS = [
|
|
|
22
22
|
/\/status(?:\?|$)/i,
|
|
23
23
|
/127\.0\.0\.1:(?:8081|8082|8083|19000|19001|19002|3000|8000)/i,
|
|
24
24
|
/localhost:(?:8081|8082|8083|19000|19001|19002|3000|8000)\/index\.bundle/i,
|
|
25
|
+
/google-analytics\.com\/mp\/collect/i,
|
|
26
|
+
/analytics\.google\.com/i,
|
|
25
27
|
];
|
|
26
28
|
function shouldIgnoreUrl(url) {
|
|
27
29
|
if (!url)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-inapp-inspector",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.8",
|
|
4
4
|
"description": "The zero-config, all-in-one in-app debugger for React Native & Expo. Inspect Network (fetch/axios), Console logs, Stack Traces, Redux State, Firebase Analytics, and JS Bundle size directly on device.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
package/src/constants/version.ts
CHANGED
|
@@ -47,6 +47,8 @@ const IGNORED_URL_PATTERNS: RegExp[] = [
|
|
|
47
47
|
/\/status(?:\?|$)/i,
|
|
48
48
|
/127\.0\.0\.1:(?:8081|8082|8083|19000|19001|19002|3000|8000)/i,
|
|
49
49
|
/localhost:(?:8081|8082|8083|19000|19001|19002|3000|8000)\/index\.bundle/i,
|
|
50
|
+
/google-analytics\.com\/mp\/collect/i,
|
|
51
|
+
/analytics\.google\.com/i,
|
|
50
52
|
];
|
|
51
53
|
|
|
52
54
|
function shouldIgnoreUrl(url: string | undefined | null): boolean {
|