mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
Merge pull request #18377 from AriPerkkio/fix/builder-stats-typings
Core: Fix builder stats typings to be optional
This commit is contained in:
commit
a5762c99cd
@ -6,7 +6,7 @@ export interface Builder<Config, Stats> {
|
||||
router: Router;
|
||||
server: Server;
|
||||
}) => Promise<void | {
|
||||
stats: Stats;
|
||||
stats?: Stats;
|
||||
totalTime: ReturnType<typeof process.hrtime>;
|
||||
bail: (e?: Error) => Promise<void>;
|
||||
}>;
|
||||
|
@ -186,7 +186,7 @@ export interface StorybookConfigOptions {
|
||||
|
||||
export type Options = LoadOptions & StorybookConfigOptions & CLIOptions & BuilderOptions;
|
||||
|
||||
export interface Builder<Config, Stats> {
|
||||
export interface Builder<Config, BuilderStats extends Stats = Stats> {
|
||||
getConfig: (options: Options) => Promise<Config>;
|
||||
start: (args: {
|
||||
options: Options;
|
||||
@ -194,14 +194,14 @@ export interface Builder<Config, Stats> {
|
||||
router: Router;
|
||||
server: Server;
|
||||
}) => Promise<void | {
|
||||
stats: Stats;
|
||||
stats?: BuilderStats;
|
||||
totalTime: ReturnType<typeof process.hrtime>;
|
||||
bail: (e?: Error) => Promise<void>;
|
||||
}>;
|
||||
build: (arg: {
|
||||
options: Options;
|
||||
startTime: ReturnType<typeof process.hrtime>;
|
||||
}) => Promise<void | Stats>;
|
||||
}) => Promise<void | BuilderStats>;
|
||||
bail: (e?: Error) => Promise<void>;
|
||||
corePresets?: string[];
|
||||
overridePresets?: string[];
|
||||
|
@ -118,9 +118,7 @@ export async function buildDevStandalone(options: CLIOptions & LoadOptions & Bui
|
||||
|
||||
if (options.smokeTest) {
|
||||
const warnings: Error[] = [];
|
||||
// @ts-ignore
|
||||
warnings.push(...((managerStats && managerStats.toJson().warnings) || []));
|
||||
// @ts-ignore
|
||||
warnings.push(...((managerStats && previewStats.toJson().warnings) || []));
|
||||
|
||||
const problems = warnings
|
||||
|
@ -21,7 +21,7 @@ async function getPreviewBuilder(builderName: string, configDir: string) {
|
||||
export async function getBuilders({
|
||||
presets,
|
||||
configDir,
|
||||
}: Options): Promise<Builder<unknown, unknown>[]> {
|
||||
}: Options): Promise<Builder<unknown>[]> {
|
||||
const core = await presets.apply<CoreConfig>('core', undefined);
|
||||
const builderName = typeof core?.builder === 'string' ? core.builder : core?.builder?.name;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user