NPM Build Utilities @ 0.3.0-alpha.17
    Preparing search index...

    0.2.0-alpha.2

    interface Opts {
        clearOutputDir: false | "complete" | "targeted";
        globs: string[];
        ignoreGlobs: string[];
        maxConcurrent: number | undefined;
        postCSS: boolean;
        srcDir?: string;
    }
    Index

    Properties

    clearOutputDir: false | "complete" | "targeted"

    Whether to delete the entire output directory before compiling.

    Complete deletes the directory. Targeted deleted files that match *.css or *.css.map globs. False does neither.

    "targeted"
    

    0.3.0-alpha.15

    globs: string[]

    Globs used to find scss files to compile. Relative to subpath param.

    [
    '/**/*.scss',
    '/**/*.sass',
    '/**/*.css',
    ]
    ignoreGlobs: string[]

    Globs of files to ignore when fetching scss files to compile.

    [ '**/_ *' ]
    
    maxConcurrent: number | undefined

    Passed to Stage.Compiler.sassBulk.

    0.3.0-alpha.1

    postCSS: boolean

    Whether to run PostCSS on the output css.

    true
    
    srcDir?: string

    The base path for the source directory (used to rewrite the output path).

    0.3.0-alpha.1