This commit is contained in:
Tom Coleman 2022-10-24 12:03:28 +11:00
parent a6ace8bd75
commit 96f920afda
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import prompts from 'prompts';
import type { CLIOptions, LoadOptions, BuilderOptions, CoreConfig } from '@storybook/core-common';
import type { CLIOptions, CoreConfig } from '@storybook/core-common';
import { loadAllPresets, cache } from '@storybook/core-common';
import { telemetry } from '@storybook/telemetry';
import type { EventType } from '@storybook/telemetry';
@ -40,7 +40,7 @@ async function shouldSendError({ cliOptions, presetOptions }: TelemetryOptions)
// If the user has chosen to enable/disable crash reports in main.js
// or disabled telemetry, we can return that
const core = await presets.apply<CoreConfig>('core');
if (core.enableCrashReports !== undefined) return core.enableCrashReports;
if (core?.enableCrashReports !== undefined) return core.enableCrashReports;
if (core?.disableTelemetry) return false;
// Deal with typo, remove in future version (7.1?)

View File

@ -20,7 +20,7 @@ export const telemetry = async (
payload,
};
try {
if (!options.stripMetadata)
if (!options?.stripMetadata)
telemetryData.metadata = await getStorybookMetadata(options?.configDir);
} catch (error: any) {
telemetryData.payload.metadataErrorMessage = sanitizeError(error).message;