config-rocket
    Preparing search index...

    Interface SimpleRocketAssembleOptions

    interface SimpleRocketAssembleOptions {
        excludes?: Record<string, boolean>;
        filesBuilder?: Record<string, { content: string; filePath: string }>;
        frameDir?: string;
        hookable?: Hookable<RocketAssembleHooks & FileOutputHooks, string>;
        outDir: string;
        variables?: Record<string, string>;
    }
    Index

    Properties

    excludes?: Record<string, boolean>

    The excludes map to skip files from the frame.

    filesBuilder?: Record<string, { content: string; filePath: string }>

    Files builder map to dynamically build files.

    frameDir?: string

    Path to the rocket frame directory.

    hookable?: Hookable<RocketAssembleHooks & FileOutputHooks, string>

    A hookable instance to hook into the rocket assemble (and related) process.

    outDir: string

    Output directory.

    variables?: Record<string, string>

    The variables map to put into the frame.