react-native-in-app-debugger 1.0.51 → 1.0.53

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/Text.jsx CHANGED
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
2
  import { Text, Platform } from 'react-native';
3
3
 
4
- export default ({ style = {}, ...props }) => <Text {...props} style={[{ fontFamily: Platform.OS === 'android' ? 'Roboto' : 'San Francisco' }, style]} />;
4
+ export default ({ style = {}, ...props }) => <Text selectable {...props} style={[{ fontFamily: Platform.OS === 'android' ? 'Roboto' : 'San Francisco' }, style]} />;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-in-app-debugger",
3
- "version": "1.0.51",
3
+ "version": "1.0.53",
4
4
  "description": "This library's main usage is to be used by Non-Technical testers during UAT, SIT or any testing phase.",
5
5
  "main": "index.jsx",
6
6
  "scripts": {
@@ -5,7 +5,7 @@ const filterNonBusinessRelatedAPI = true;
5
5
 
6
6
  const shouldExclude = (url, method) =>
7
7
  ['HEAD'].includes(method) ||
8
- url.includes('codepush') ||
8
+ // url.includes('codepush') ||
9
9
  url.includes('localhost') ||
10
10
  url.includes('applicationinsights.azure.com');
11
11