mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:01:16 +08:00
Core: Fix null stats.toJson() for vite builder
This commit is contained in:
parent
eb24506ece
commit
6a4a0bd2cc
@ -118,8 +118,8 @@ export async function buildDevStandalone(options: CLIOptions & LoadOptions & Bui
|
||||
|
||||
if (options.smokeTest) {
|
||||
const warnings: Error[] = [];
|
||||
warnings.push(...((managerStats && managerStats.toJson().warnings) || []));
|
||||
warnings.push(...((previewStats && previewStats.toJson().warnings) || []));
|
||||
warnings.push(...(managerStats?.toJson()?.warnings || []));
|
||||
warnings.push(...(previewStats?.toJson()?.warnings || []));
|
||||
|
||||
const problems = warnings
|
||||
.filter((warning) => !warning.message.includes(`export 'useInsertionEffect'`))
|
||||
|
Loading…
x
Reference in New Issue
Block a user