storybook/lib/cli/src/automigrate/fixes/mainjsFramework.ts
Michael Shilman c865e8ec95
Update lib/cli/src/automigrate/fixes/mainjsFramework.ts
Co-authored-by: Yann Braga <yannbf@gmail.com>
2021-10-20 20:59:54 +08:00

67 lines
2.0 KiB
TypeScript

import chalk from 'chalk';
import dedent from 'ts-dedent';
import semver from '@storybook/semver';
import { ConfigFile, readConfig, writeConfig } from '@storybook/csf-tools';
import { getStorybookInfo } from '../helpers/getStorybookInfo';
import { Fix } from '../types';
const logger = console;
interface MainjsFrameworkRunOptions {
framework: string;
main: ConfigFile;
}
export const mainjsFramework: Fix<MainjsFrameworkRunOptions> = {
id: 'mainjsFramework',
async check({ packageManager }) {
const packageJson = packageManager.retrievePackageJson();
const { mainConfig, framework, version: storybookVersion } = getStorybookInfo(packageJson);
const storybookCoerced = semver.coerce(storybookVersion).version;
const main = await readConfig(mainConfig);
const currentFramework = main.getFieldValue(['framework']);
const features = main.getFieldValue(['features']);
if (currentFramework) return null;
if (!storybookCoerced) {
logger.warn(`Unable to determine storybook version, skipping mainjsFramework fix.`);
return null;
}
return features?.breakingChangesV7 ||
features?.storyStoreV7 ||
semver.gte(storybookCoerced, '7.0.0')
? { main, framework: `@storybook/${framework}` }
: null;
},
prompt({ framework }) {
const frameworkFormatted = chalk.cyan(`framework: '${framework}'`);
return dedent`
We've detected that your main.js configuration file does not specify the
'framework' field, which is a requirement in SB7.0 and above. We can add one
for you automatically:
${frameworkFormatted}
More info: ${chalk.yellow(
'https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#mainjs-framework-field'
)}
`;
},
async run({ result: { main, framework }, dryRun }) {
logger.info(`✅ Setting 'framework' to '${framework}' in main.js`);
if (!dryRun) {
main.setFieldValue(['framework'], framework);
await writeConfig(main);
}
},
};