reasonix 0.22.0 → 0.23.0
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/dist/cli/index.js +1135 -822
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +165 -113
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -705,12 +705,15 @@ declare function formatLoopError(err: Error): string;
|
|
|
705
705
|
/** Expand `@path` mentions inline. Paths must resolve inside rootDir; escapes / oversize get a skip note, not content. */
|
|
706
706
|
/** Caps match tool-result dispatch truncation (0.5.2). */
|
|
707
707
|
declare const DEFAULT_AT_MENTION_MAX_BYTES: number;
|
|
708
|
+
/** Universally-uninteresting build / VCS dirs. Framework-specific dirs (Pods, target, …) live in .gitignore. */
|
|
708
709
|
declare const DEFAULT_PICKER_IGNORE_DIRS: readonly string[];
|
|
709
710
|
interface ListFilesOptions {
|
|
710
|
-
/** Cap the walk once we've collected this many entries. Default
|
|
711
|
+
/** Cap the walk once we've collected this many entries. Default 2000. */
|
|
711
712
|
maxResults?: number;
|
|
712
713
|
/** Directory names to skip entirely. Defaults to {@link DEFAULT_PICKER_IGNORE_DIRS}. */
|
|
713
714
|
ignoreDirs?: readonly string[];
|
|
715
|
+
/** Walk nested .gitignores (root + every subdir). Default true. */
|
|
716
|
+
respectGitignore?: boolean;
|
|
714
717
|
}
|
|
715
718
|
/** Sync on purpose — fits the TUI's single-turn-per-tick model. Skips dot-DIRS but keeps dotfiles. */
|
|
716
719
|
declare function listFilesSync(root: string, opts?: ListFilesOptions): string[];
|
|
@@ -1855,6 +1858,8 @@ interface ReasonixConfig {
|
|
|
1855
1858
|
session?: string | null;
|
|
1856
1859
|
setupCompleted?: boolean;
|
|
1857
1860
|
search?: boolean;
|
|
1861
|
+
/** Persisted sidebar visibility — undefined = auto (open on cols ≥ 120). */
|
|
1862
|
+
sidebarOpen?: boolean;
|
|
1858
1863
|
projects?: {
|
|
1859
1864
|
[absoluteRootDir: string]: {
|
|
1860
1865
|
shellAllowed?: string[];
|