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

    Interface BatchCommandOptionValues

    Option values parsed for the batch command mount.

    interface BatchCommandOptionValues {
        command?: string;
        globs?: string;
        ignoreErrors?: boolean;
        list?: boolean;
        pkgCwd?: boolean;
        rootPath?: string;
        [key: string]: unknown;
    }

    Hierarchy

    Indexable

    • [key: string]: unknown
    Index

    Properties

    command?: string

    Command string executed according to the resolved shell preference.

    globs?: string

    Space-delimited glob patterns relative to BatchCommandOptionValues.rootPath.

    ignoreErrors?: boolean

    When true, ignore errors and continue with the next matched directory.

    list?: boolean

    When true, list matched working directories without executing a command.

    pkgCwd?: boolean

    When true, resolve the batch root from the nearest package directory instead of process.cwd().

    rootPath?: string

    Root path (relative to CWD or package directory) for resolving globs.