react-native-debug-toolkit 0.5.2 → 0.5.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/DebugToolKit.js +3 -1
- package/lib/index.js +2 -1
- package/package.json +1 -1
package/lib/DebugToolKit.js
CHANGED
|
@@ -13,7 +13,9 @@ export default class DebugToolKit {
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
// Set the debug mode flag directly from NativeDebugLibs
|
|
16
|
-
this.isDebugMode = NativeDebugLibs.isDebugBuild()
|
|
16
|
+
// this.isDebugMode = NativeDebugLibs.isDebugBuild()
|
|
17
|
+
this.isDebugMode = true
|
|
18
|
+
|
|
17
19
|
this.floatPanel = null
|
|
18
20
|
this.features = []
|
|
19
21
|
this.isPanelVisible = false
|
package/lib/index.js
CHANGED
|
@@ -23,7 +23,8 @@ const featureRegistry = {
|
|
|
23
23
|
const defaultFeatures = ['network', 'console', 'zustand', 'navigation', 'thirdPartyLibs']
|
|
24
24
|
|
|
25
25
|
// Export the debug mode status - this is used by the app
|
|
26
|
-
const isDebugMode = NativeDebugLibs.isDebugBuild();
|
|
26
|
+
// const isDebugMode = NativeDebugLibs.isDebugBuild();
|
|
27
|
+
const isDebugMode = true
|
|
27
28
|
|
|
28
29
|
/**
|
|
29
30
|
* Initializes and shows the Debug ToolKit panel with specified features.
|
package/package.json
CHANGED