@novodip/expo-router-devtools 1.1.2 → 1.1.4

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.
Files changed (2) hide show
  1. package/README.md +7 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -36,13 +36,13 @@ https://github.com/user-attachments/assets/71dd6770-7e92-4275-9497-40b3fbbf1cae
36
36
  ## Installation
37
37
 
38
38
  ```bash
39
- npm install expo-router-devtools
39
+ npm install @novodip/expo-router-devtools
40
40
  ```
41
41
 
42
42
  or
43
43
 
44
44
  ```bash
45
- yarn add expo-router-devtools
45
+ yarn add @novodip/expo-router-devtools
46
46
 
47
47
  ```
48
48
 
@@ -89,5 +89,9 @@ export default function RootLayout() {
89
89
  ### Example
90
90
 
91
91
  ```tsx
92
- <ExpoRouterDevTools position="bottom" maxHistory={20} onRouteChange={(route) => console.log(route)} />
92
+ <ExpoRouterDevTools
93
+ position="bottom"
94
+ maxHistory={20}
95
+ onRouteChange={(route) => console.log(route)}
96
+ />
93
97
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@novodip/expo-router-devtools",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "Development tools for Expo Router - visualize routes, save navigation states, and debug your app's navigation flow",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",