@karmaniverous/stan-cli
    Preparing search index...

    Type Alias ScriptObject

    Object form of a configured script entry.

    type ScriptObject = {
        script: string;
        warnPattern?: string;
        warnPatternFlags?: string;
    }
    Index

    Properties

    script: string

    Shell command to execute for this script key.

    warnPattern?: string

    Optional regular expression pattern used to classify output as a warning even when the process exits with code 0.

    warnPatternFlags?: string

    Optional regex flags that override the default flags behavior for warnPattern.