react-native-debug-toolkit 0.6.2 → 0.6.3

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.
@@ -48,20 +48,20 @@ export default class NativeDebugLibs {
48
48
 
49
49
  // DoraemonKit/DoKit methods
50
50
  static installDoraemonKit(productId) {
51
- if (RNDebugLibs) {
52
- RNDebugLibs.installDoraemonKit(productId)
53
- }
51
+ // if (RNDebugLibs) {
52
+ // RNDebugLibs.installDoraemonKit(productId)
53
+ // }
54
54
  }
55
55
 
56
56
  static showDoraemonKit() {
57
- if (RNDebugLibs) {
58
- RNDebugLibs.showDoraemonKit()
59
- }
57
+ // if (RNDebugLibs) {
58
+ // RNDebugLibs.showDoraemonKit()
59
+ // }
60
60
  }
61
61
 
62
62
  static hideDoraemonKit() {
63
- if (RNDebugLibs) {
64
- RNDebugLibs.hideDoraemonKit()
65
- }
63
+ // if (RNDebugLibs) {
64
+ // RNDebugLibs.hideDoraemonKit()
65
+ // }
66
66
  }
67
67
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-debug-toolkit",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "description": "A simple yet powerful debugging toolkit for React Native with a convenient floating UI for development",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
18
18
  s.dependency "FLEX", "~> 5.0"
19
19
 
20
20
  # DoraemonKit is only needed for debug builds
21
- s.dependency "DoraemonKit/Core", "~> 3.0"
21
+ # s.dependency "DoraemonKit/Core", "~> 3.0"
22
22
 
23
23
  # This ensures FLEX and DoraemonKit are only included in debug builds
24
24
  s.pod_target_xcconfig = { 'OTHER_CFLAGS' => '-DDebug=$(CONFIGURATION)' }
@@ -9,9 +9,9 @@ module.exports = {
9
9
  podspecPath: "./react-native-debug-toolkit.podspec",
10
10
  sourceDir: "./ios"
11
11
  },
12
- android: {
13
- sourceDir: "./android"
14
- }
12
+ // android: {
13
+ // sourceDir: "./android"
14
+ // }
15
15
  }
16
16
  }
17
17
  }