Stone.js API
    Preparing search index...
    • Config-phase middleware that collects and wires the CLI plugins.

      Runs inside the CLI's blueprint pipeline, after the user config is loaded, so it can read stone.builder.plugins (explicit, Path A) and, unless stone.builder.autoDiscoverPlugins is false, auto-discover @stone-js/* first-party plugins (Path B). It then runs every plugin's blueprintMiddleware on the same blueprint context (so plugins can augment stone.builder.* before the builders run) and stashes the resolved plugin list on the blueprint for the build phase (stone.builder.loadedPlugins).

      Parameters

      • context: BlueprintContext<IBlueprint, ClassType>

        The blueprint context.

      • next: NextPipe<BlueprintContext<IBlueprint, ClassType>, IBlueprint>

        The next pipe.

      Returns Promise<IBlueprint>

      The blueprint.