fpf-cli 1.6.2 → 1.6.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/fpf +1 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -34,7 +34,7 @@ fpf -U
34
34
 
35
35
  By default, `fpf` auto-detects your package manager.
36
36
 
37
- On macOS, default auto mode uses both `brew` and `bun` together.
37
+ On macOS, default auto mode uses `brew`, `npm`, and `bun` together.
38
38
 
39
39
  On macOS with no query (`fpf`), startup uses a lighter default search for `brew` and `bun` so you still get installable packages without the huge initial catalog load.
40
40
 
package/fpf CHANGED
@@ -368,6 +368,7 @@ detect_default_managers() {
368
368
 
369
369
  if [[ "${os}" == "Darwin" ]]; then
370
370
  add_detected_manager "brew"
371
+ add_detected_manager "npm"
371
372
  add_detected_manager "bun"
372
373
  if [[ -n "${emitted}" ]]; then
373
374
  return
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fpf-cli",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "description": "Cross-platform fuzzy package finder powered by fzf",
5
5
  "bin": {
6
6
  "fpf": "fpf"