blun-king-cli 9.1.93 → 9.1.94
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/LIESMICH.txt +1 -1
- package/README.md +1 -1
- package/blun.mjs +1 -0
- package/package.json +1 -1
package/LIESMICH.txt
CHANGED
package/README.md
CHANGED
package/blun.mjs
CHANGED
|
@@ -257819,6 +257819,7 @@ var init_glob = __esmMin((() => {
|
|
|
257819
257819
|
WINDOWS_PATH_HINT = "\n\nWindows note: the `path` argument accepts both Windows paths (e.g. `C:\\Users\\foo`) and POSIX-style paths (e.g. `/c/Users/foo`). Matched paths are returned in Windows backslash form; convert them to forward slashes before using them in a Bash command.";
|
|
257820
257820
|
S_IFMT$2 = 61440;
|
|
257821
257821
|
S_IFDIR$1 = 16384;
|
|
257822
|
+
glob_default = "Find files by glob pattern, sorted by modification time with the newest first. The search uses ripgrep and respects `.gitignore`, `.ignore`, and `.rgignore` unless `include_ignored` is true. Sensitive files remain filtered. Results are files only; to locate a directory, match a file below it.\n\nA bare pattern such as `*.ts` matches file names at any depth. `src/*.ts` matches one level, while `src/**/*.ts` walks recursively below that anchor. brace expansion such as `*.{ts,tsx}` is supported. Dot names match only when their pattern segment starts with `.`, for example `.github/**/*.yml`; `**` does not descend into dot-directories.\n\nResults stop after 100 matching paths and append a truncation marker. Refine the extension or directory and search again when that is not enough. Avoid broad ignored dependency or build trees such as `node_modules/**/*.js`, `.venv/**/*.py`, `__pycache__/**`, or `target/**`; with `include_ignored` they waste context and usually hit the cap. Prefer a specific subpath.";
|
|
257822
257823
|
GlobTool = class {
|
|
257823
257824
|
kaos;
|
|
257824
257825
|
workspace;
|