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.
package/lib/NativeDebugLibs.js
CHANGED
|
@@ -48,20 +48,20 @@ export default class NativeDebugLibs {
|
|
|
48
48
|
|
|
49
49
|
// DoraemonKit/DoKit methods
|
|
50
50
|
static installDoraemonKit(productId) {
|
|
51
|
-
if (RNDebugLibs) {
|
|
52
|
-
|
|
53
|
-
}
|
|
51
|
+
// if (RNDebugLibs) {
|
|
52
|
+
// RNDebugLibs.installDoraemonKit(productId)
|
|
53
|
+
// }
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
static showDoraemonKit() {
|
|
57
|
-
if (RNDebugLibs) {
|
|
58
|
-
|
|
59
|
-
}
|
|
57
|
+
// if (RNDebugLibs) {
|
|
58
|
+
// RNDebugLibs.showDoraemonKit()
|
|
59
|
+
// }
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
static hideDoraemonKit() {
|
|
63
|
-
if (RNDebugLibs) {
|
|
64
|
-
|
|
65
|
-
}
|
|
63
|
+
// if (RNDebugLibs) {
|
|
64
|
+
// RNDebugLibs.hideDoraemonKit()
|
|
65
|
+
// }
|
|
66
66
|
}
|
|
67
67
|
}
|
package/package.json
CHANGED
|
@@ -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)' }
|