Member Junction
    Preparing search index...
    • Gets commands configured to run at a specific time

      Parameters

      • when: string

        When the commands should run (e.g., 'before', 'after')

      Returns {
          args: string[];
          command: string;
          timeout?: number | null;
          when: string;
          workingDirectory: string;
      }[]

      Array of commands to execute

      • args: string[]

        Command line arguments

      • command: string

        The command to execute

      • Optionaltimeout?: number | null

        Optional timeout in milliseconds

      • when: string

        When to run the command (e.g., 'before', 'after')

      • workingDirectory: string

        Working directory to run the command from