Expose the Server instance through the pluggable Builder API

Builder implementations (e.g. Vite) may have hot module replacement
implementations based on Websockets. The websocket has to be mounted
on the Server instance - which is why the builder needs access to
it from the API.
This commit is contained in:
Eirik Sletteberg 2021-04-04 15:13:25 +02:00
parent 0cbd52775d
commit a297c93a98
2 changed files with 3 additions and 0 deletions

View File

@ -169,6 +169,7 @@ export interface Builder<Config, Stats> {
options: Options;
startTime: ReturnType<typeof process.hrtime>;
router: Router;
server: Server;
}) => Promise<void | {
stats: Stats;
totalTime: ReturnType<typeof process.hrtime>;

View File

@ -59,12 +59,14 @@ export async function storybookDevServer(options: Options) {
startTime,
options,
router,
server,
});
const manager = managerBuilder.start({
startTime,
options,
router,
server,
});
const [previewResult, managerResult] = await Promise.all([