mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:01:06 +08:00
24 lines
541 B
Plaintext
24 lines
541 B
Plaintext
```ts
|
|
// index.ts
|
|
|
|
import { createViteServer } from './vite-server';
|
|
|
|
export const start: ViteBuilder['start'] = async ({ options, server: devServer }) => {
|
|
// Remainder implementation goes here
|
|
|
|
const server = await createViteServer(options as ExtendedOptions, devServer);
|
|
async function bail(e?: Error): Promise<void> {
|
|
try {
|
|
return await server.close();
|
|
} catch (err) {
|
|
console.warn('unable to close the server');
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
return {
|
|
bail,
|
|
totalTime: process.hrtime(startTime),
|
|
};
|
|
};
|
|
``` |