Stone.js API
    Preparing search index...

    The mutable set of contributions gathered from every plugin during a build.

    Plugins never touch the entry templates directly: they push module specifiers and blueprint statements here (through the StonePluginContext), and the entry generators weave the accumulated contributions into the generated code once, at the right moment.

    interface PluginContributions {
        blueprints: string[];
        modules: string[];
    }
    Index
    blueprints: string[]

    Raw blueprint statements to inject into the generated entry's configure step.

    modules: string[]

    Import specifiers to add to the built app's modules (resolvable from .stone/tmp).