@ff-labs/fff-bun 0.9.6 → 0.9.7-nightly.03e1a1a
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 +9 -9
- 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.
|
|
3
|
+
"version": "0.9.7-nightly.03e1a1a",
|
|
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.
|
|
62
|
-
"@ff-labs/fff-bin-darwin-x64": "0.9.
|
|
63
|
-
"@ff-labs/fff-bin-linux-x64-gnu": "0.9.
|
|
64
|
-
"@ff-labs/fff-bin-linux-arm64-gnu": "0.9.
|
|
65
|
-
"@ff-labs/fff-bin-linux-x64-musl": "0.9.
|
|
66
|
-
"@ff-labs/fff-bin-linux-arm64-musl": "0.9.
|
|
67
|
-
"@ff-labs/fff-bin-win32-x64": "0.9.
|
|
68
|
-
"@ff-labs/fff-bin-win32-arm64": "0.9.
|
|
61
|
+
"@ff-labs/fff-bin-darwin-arm64": "0.9.7-nightly.03e1a1a",
|
|
62
|
+
"@ff-labs/fff-bin-darwin-x64": "0.9.7-nightly.03e1a1a",
|
|
63
|
+
"@ff-labs/fff-bin-linux-x64-gnu": "0.9.7-nightly.03e1a1a",
|
|
64
|
+
"@ff-labs/fff-bin-linux-arm64-gnu": "0.9.7-nightly.03e1a1a",
|
|
65
|
+
"@ff-labs/fff-bin-linux-x64-musl": "0.9.7-nightly.03e1a1a",
|
|
66
|
+
"@ff-labs/fff-bin-linux-arm64-musl": "0.9.7-nightly.03e1a1a",
|
|
67
|
+
"@ff-labs/fff-bin-win32-x64": "0.9.7-nightly.03e1a1a",
|
|
68
|
+
"@ff-labs/fff-bin-win32-arm64": "0.9.7-nightly.03e1a1a"
|
|
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
|
|
101
|
-
*
|
|
102
|
-
|
|
103
|
-
|
|
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
|
/**
|