@ff-labs/fff-bun 0.10.2-nightly.fbee146 → 0.10.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 (2) hide show
  1. package/package.json +10 -10
  2. package/src/fff-api.ts +3 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ff-labs/fff-bun",
3
- "version": "0.10.2-nightly.fbee146",
3
+ "version": "0.10.3",
4
4
  "private": false,
5
5
  "description": "High-performance fuzzy file finder for Bun - perfect for LLM agent tools",
6
6
  "type": "module",
@@ -59,15 +59,15 @@
59
59
  },
60
60
  "homepage": "https://github.com/dmtrKovalenko/fff#readme",
61
61
  "optionalDependencies": {
62
- "@ff-labs/fff-bin-darwin-arm64": "0.10.2-nightly.fbee146",
63
- "@ff-labs/fff-bin-darwin-x64": "0.10.2-nightly.fbee146",
64
- "@ff-labs/fff-bin-linux-x64-gnu": "0.10.2-nightly.fbee146",
65
- "@ff-labs/fff-bin-linux-arm64-gnu": "0.10.2-nightly.fbee146",
66
- "@ff-labs/fff-bin-linux-x64-musl": "0.10.2-nightly.fbee146",
67
- "@ff-labs/fff-bin-linux-arm64-musl": "0.10.2-nightly.fbee146",
68
- "@ff-labs/fff-bin-win32-x64": "0.10.2-nightly.fbee146",
69
- "@ff-labs/fff-bin-win32-arm64": "0.10.2-nightly.fbee146",
70
- "@ff-labs/fff-bin-android-arm64": "0.10.2-nightly.fbee146"
62
+ "@ff-labs/fff-bin-darwin-arm64": "0.10.3",
63
+ "@ff-labs/fff-bin-darwin-x64": "0.10.3",
64
+ "@ff-labs/fff-bin-linux-x64-gnu": "0.10.3",
65
+ "@ff-labs/fff-bin-linux-arm64-gnu": "0.10.3",
66
+ "@ff-labs/fff-bin-linux-x64-musl": "0.10.3",
67
+ "@ff-labs/fff-bin-linux-arm64-musl": "0.10.3",
68
+ "@ff-labs/fff-bin-win32-x64": "0.10.3",
69
+ "@ff-labs/fff-bin-win32-arm64": "0.10.3",
70
+ "@ff-labs/fff-bin-android-arm64": "0.10.3"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@types/bun": "^1.3.8",
package/src/fff-api.ts CHANGED
@@ -573,16 +573,10 @@ export interface FileFinderApi {
573
573
  glob(pattern: string, options?: GlobOptions): Result<SearchResult>;
574
574
 
575
575
  /** Fuzzy directory search. */
576
- directorySearch(
577
- query: string,
578
- options?: DirSearchOptions,
579
- ): Result<DirSearchResult>;
576
+ directorySearch(query: string, options?: DirSearchOptions): Result<DirSearchResult>;
580
577
 
581
578
  /** Fuzzy search over files and directories interleaved by score. */
582
- mixedSearch(
583
- query: string,
584
- options?: SearchOptions,
585
- ): Result<MixedSearchResult>;
579
+ mixedSearch(query: string, options?: SearchOptions): Result<MixedSearchResult>;
586
580
 
587
581
  /** Content search (live grep). */
588
582
  grep(query: string, options?: GrepOptions): Result<GrepResult>;
@@ -647,10 +641,7 @@ export interface FileFinderApi {
647
641
  * Events are debounced and submitted in batches per 100-ms window at most 128 events.
648
642
  * Gitignored and other ignored files are never triggering watcher.
649
643
  */
650
- watch(
651
- callback: WatchBatchCallback,
652
- options?: WatchOptions,
653
- ): Result<WatchUnsubscribe>;
644
+ watch(callback: WatchBatchCallback, options?: WatchOptions): Result<WatchUnsubscribe>;
654
645
  watch(
655
646
  pattern: string,
656
647
  callback: WatchBatchCallback,