@ff-labs/fff-bun 0.9.6 → 0.9.7-nightly.0a953ab

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/package.json +9 -9
  2. package/src/fff-api.ts +7 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ff-labs/fff-bun",
3
- "version": "0.9.6",
3
+ "version": "0.9.7-nightly.0a953ab",
4
4
  "private": false,
5
5
  "description": "High-performance fuzzy file finder for Bun - perfect for LLM agent tools",
6
6
  "type": "module",
@@ -58,14 +58,14 @@
58
58
  },
59
59
  "homepage": "https://github.com/dmtrKovalenko/fff#readme",
60
60
  "optionalDependencies": {
61
- "@ff-labs/fff-bin-darwin-arm64": "0.9.6",
62
- "@ff-labs/fff-bin-darwin-x64": "0.9.6",
63
- "@ff-labs/fff-bin-linux-x64-gnu": "0.9.6",
64
- "@ff-labs/fff-bin-linux-arm64-gnu": "0.9.6",
65
- "@ff-labs/fff-bin-linux-x64-musl": "0.9.6",
66
- "@ff-labs/fff-bin-linux-arm64-musl": "0.9.6",
67
- "@ff-labs/fff-bin-win32-x64": "0.9.6",
68
- "@ff-labs/fff-bin-win32-arm64": "0.9.6"
61
+ "@ff-labs/fff-bin-darwin-arm64": "0.9.7-nightly.0a953ab",
62
+ "@ff-labs/fff-bin-darwin-x64": "0.9.7-nightly.0a953ab",
63
+ "@ff-labs/fff-bin-linux-x64-gnu": "0.9.7-nightly.0a953ab",
64
+ "@ff-labs/fff-bin-linux-arm64-gnu": "0.9.7-nightly.0a953ab",
65
+ "@ff-labs/fff-bin-linux-x64-musl": "0.9.7-nightly.0a953ab",
66
+ "@ff-labs/fff-bin-linux-arm64-musl": "0.9.7-nightly.0a953ab",
67
+ "@ff-labs/fff-bin-win32-x64": "0.9.7-nightly.0a953ab",
68
+ "@ff-labs/fff-bin-win32-arm64": "0.9.7-nightly.0a953ab"
69
69
  },
70
70
  "devDependencies": {
71
71
  "@types/bun": "^1.3.8",
package/src/fff-api.ts CHANGED
@@ -97,17 +97,15 @@ export interface InitOptions {
97
97
  /** Override for the per-file byte cap in the content cache. */
98
98
  cacheBudgetMaxFileSize?: number;
99
99
  /**
100
- * Allow indexing the filesystem root (`/`). Off by default root is
101
- * rarely the intended target and floods the watcher with churn-prone
102
- * events. Setting this true is opt-in and the caller is responsible for
103
- * the resulting fs-event volume.
104
- */
100
+ * Allow indexing the filesystem root (`/`). Off by default, having fff instance at the large folder
101
+ * will generally require file watcher
102
+ * */
103
+
105
104
  enableFsRootScanning?: boolean;
106
- /**
107
- * Allow indexing the user's home directory. Same trade-off as
108
- * `enableFsRootScanning`.
109
- */
105
+ /** Allow indexing the user's home directory. Same trade-off as `enableFsRootScanning`. */
110
106
  enableHomeDirScanning?: boolean;
107
+ /** Follow symlinks for directories */
108
+ followSymlinks?: boolean;
111
109
  }
112
110
 
113
111
  /**