mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
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:
parent
0cbd52775d
commit
a297c93a98
@ -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>;
|
||||
|
@ -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([
|
||||
|
Loading…
x
Reference in New Issue
Block a user