ai-heatmap 1.17.2 → 1.17.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.
- package/README.md +7 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -187,7 +187,7 @@ For automated updates, use a local cron job or macOS LaunchAgent:
|
|
|
187
187
|
CLAUDE_CODE_OAUTH_TOKEN=sk-ant-xxx
|
|
188
188
|
GH_TOKEN=ghp_xxx
|
|
189
189
|
|
|
190
|
-
0 0 * * * npx --yes ai-heatmap@latest update
|
|
190
|
+
0 0 * * * npx clear-npx-cache && npx --yes ai-heatmap@latest update
|
|
191
191
|
```
|
|
192
192
|
|
|
193
193
|
> **`npx: not found`?** cron uses a minimal PATH. Fix with:
|
|
@@ -207,6 +207,12 @@ To use the latest version of ai-heatmap:
|
|
|
207
207
|
npx --yes ai-heatmap@latest update
|
|
208
208
|
```
|
|
209
209
|
|
|
210
|
+
> **Still running an old version?** npx caches packages locally. If the update command behaves unexpectedly after a release, clear the cache:
|
|
211
|
+
> ```bash
|
|
212
|
+
> npx clear-npx-cache
|
|
213
|
+
> npx --yes ai-heatmap@latest update
|
|
214
|
+
> ```
|
|
215
|
+
|
|
210
216
|
## Deployment
|
|
211
217
|
|
|
212
218
|
```bash
|