Core: Fix null stats.toJson() for vite builder

This commit is contained in:
Michael Shilman 2022-08-22 23:45:27 +08:00
parent eb24506ece
commit 6a4a0bd2cc

View File

@ -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'`))