deepflow 0.1.36 → 0.1.37
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/package.json
CHANGED
|
@@ -17,6 +17,11 @@ npx deepflow --uninstall
|
|
|
17
17
|
## Check Version
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
# Installed version (source of truth):
|
|
21
|
+
cat ~/.claude/cache/df-update-check.json | grep currentVersion
|
|
22
|
+
|
|
23
|
+
# Latest on npm:
|
|
24
|
+
npm view deepflow version
|
|
22
25
|
```
|
|
26
|
+
|
|
27
|
+
**NOTE:** Do NOT use `npm list -g deepflow` — it shows a stale version unrelated to the actual installation.
|