@karmaniverous/get-dotenv
    Preparing search index...

    Interface BatchGlobPathsOptions

    Options for discovering batch working directories from a root path and globs.

    interface BatchGlobPathsOptions {
        globs: string;
        logger: Logger;
        pkgCwd?: boolean;
        rootPath: string;
    }
    Index

    Properties

    globs: string

    Space-delimited glob patterns relative to BatchGlobPathsOptions.rootPath. Each pattern is resolved using posix-style separators and must resolve to directories (files are ignored).

    logger: Logger

    Logger used for user-facing messages (errors, headings, and listings).

    pkgCwd?: boolean

    When true, resolve the batch root from the nearest package directory instead of the current working directory.

    rootPath: string

    Path to the batch root directory, resolved from the current working directory (or package directory when BatchGlobPathsOptions.pkgCwd is true).