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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-debug-toolkit",
3
- "version": "0.5.2",
3
+ "version": "0.5.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",