improve error message

This commit is contained in:
Yann Braga 2023-02-17 17:36:06 +01:00
parent b1b1e27c0f
commit cc82057d88
7 changed files with 7 additions and 7 deletions

View File

@ -49,7 +49,7 @@ export const bareMdxStoriesGlob: Fix<BareMdxStoriesGlobRunOptions> = {
if (!sbVersionCoerced) {
throw new Error(dedent`
Unable to determine storybook version.
🤔 Are you running automigrate from your project directory?
🤔 Are you running automigrate from your project directory? Please specify your Storybook config directory with the --config-dir flag.
`);
}

View File

@ -31,7 +31,7 @@ export const missingBabelRc: Fix<MissingBabelRcOptions> = {
if (!storybookCoerced) {
throw new Error(dedent`
Unable to determine storybook version.
🤔 Are you running automigrate from your project directory?
🤔 Are you running automigrate from your project directory? Please specify your Storybook config directory with the --config-dir flag.
`);
}

View File

@ -86,7 +86,7 @@ export const newFrameworks: Fix<NewFrameworkRunOptions> = {
if (!storybookCoerced) {
throw new Error(dedent`
Unable to determine Storybook version.
🤔 Are you running automigrate from your project directory?
🤔 Are you running automigrate from your project directory? Please specify your Storybook config directory with the --config-dir flag.
`);
}

View File

@ -20,7 +20,7 @@ export const nodeJsRequirement: Fix<NodeJsRequirementOptions> = {
if (!storybookCoerced) {
throw new Error(dedent`
Unable to determine storybook version.
🤔 Are you running automigrate from your project directory?
🤔 Are you running automigrate from your project directory? Please specify your Storybook config directory with the --config-dir flag.
`);
}

View File

@ -36,7 +36,7 @@ export const sbBinary: Fix<SbBinaryRunOptions> = {
if (!storybookCoerced) {
throw new Error(dedent`
Unable to determine storybook version.
🤔 Are you running automigrate from your project directory?
🤔 Are you running automigrate from your project directory? Please specify your Storybook config directory with the --config-dir flag.
`);
}

View File

@ -79,7 +79,7 @@ export const sbScripts: Fix<SbScriptsRunOptions> = {
if (!storybookCoerced) {
throw new Error(dedent`
Unable to determine storybook version.
🤔 Are you running automigrate from your project directory?
🤔 Are you running automigrate from your project directory? Please specify your Storybook config directory with the --config-dir flag.
`);
}

View File

@ -41,7 +41,7 @@ export const webpack5: Fix<Webpack5RunOptions> & CheckBuilder = {
if (!storybookCoerced) {
throw new Error(dedent`
Unable to determine storybook version.
🤔 Are you running automigrate from your project directory?
🤔 Are you running automigrate from your project directory? Please specify your Storybook config directory with the --config-dir flag.
`);
}