dd-memo 0.1.1 → 0.1.2

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 CHANGED
@@ -10,6 +10,23 @@ npm install -g dd-memo
10
10
 
11
11
  Requires Node.js ≥ 20.
12
12
 
13
+ ### `dd-memo: command not found` after install?
14
+
15
+ The npm global bin dir isn't on your `$PATH`. One-liner fix (zsh):
16
+
17
+ ```bash
18
+ echo "export PATH=\"$(npm config get prefix)/bin:\$PATH\"" >> ~/.zshrc
19
+ source ~/.zshrc
20
+ dd-memo --version
21
+ ```
22
+
23
+ Use `~/.bashrc` instead if you're on bash. If that doesn't help, confirm the binary exists:
24
+
25
+ ```bash
26
+ ls "$(npm config get prefix)/bin/" | grep dd-memo
27
+ ```
28
+
29
+
13
30
  ## Usage
14
31
 
15
32
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dd-memo",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "AI-powered Due Diligence memo generator — CLI that runs the DD Memo web app locally",
5
5
  "keywords": [
6
6
  "dd",
Binary file