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

    Interface RunCommandOptions

    Options for runCommand (execution with optional inherit/pipe).

    interface RunCommandOptions {
        cwd?: string | URL;
        env?: ProcessEnv;
        stdio?: "pipe" | "inherit";
    }
    Index

    Properties

    Properties

    cwd?: string | URL

    Working directory for the child process.

    env?: ProcessEnv

    Environment variables for the child process. Undefined values are dropped.

    stdio?: "pipe" | "inherit"

    Stdio strategy for the child process.