mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:11:15 +08:00
62 lines
1.8 KiB
TypeScript
62 lines
1.8 KiB
TypeScript
import chalk from 'chalk';
|
|
import dedent from 'ts-dedent';
|
|
import semver from '@storybook/semver';
|
|
import { ConfigFile } from '@storybook/csf-tools';
|
|
import { Fix } from '../types';
|
|
import { webpack5 } from './webpack5';
|
|
|
|
interface Angular12RunOptions {
|
|
angularVersion: string;
|
|
// FIXME angularPresetVersion: string;
|
|
storybookVersion: string;
|
|
main: ConfigFile;
|
|
}
|
|
|
|
/**
|
|
* Is the user upgrading to Angular12?
|
|
*
|
|
* If so:
|
|
* - Run webpack5 fix
|
|
*/
|
|
export const angular12: Fix<Angular12RunOptions> = {
|
|
id: 'angular12',
|
|
|
|
async check({ packageManager }) {
|
|
const packageJson = packageManager.retrievePackageJson();
|
|
const { dependencies, devDependencies } = packageJson;
|
|
const angularVersion = dependencies['@angular/core'] || devDependencies['@angular/core'];
|
|
const angularCoerced = semver.coerce(angularVersion)?.version;
|
|
|
|
if (!angularCoerced || semver.lt(angularCoerced, '12.0.0')) {
|
|
return null;
|
|
}
|
|
|
|
const builderInfo = await webpack5.checkWebpack5Builder(packageJson);
|
|
return builderInfo ? { angularVersion, ...builderInfo } : null;
|
|
},
|
|
|
|
prompt({ angularVersion, storybookVersion }) {
|
|
const angularFormatted = chalk.cyan(`Angular ${angularVersion}`);
|
|
const sbFormatted = chalk.cyan(`Storybook ${storybookVersion}`);
|
|
return dedent`
|
|
We've detected you are running ${angularFormatted} which is powered by webpack5.
|
|
${sbFormatted} runs webpack4 by default, which is incompatible.
|
|
|
|
In order to work with your version of Angular, we need to install Storybook's ${chalk.cyan(
|
|
'webpack5 builder'
|
|
)}.
|
|
|
|
More info: ${chalk.yellow(
|
|
'https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#angular12-upgrade'
|
|
)}
|
|
`;
|
|
},
|
|
|
|
async run(options) {
|
|
return webpack5.run({
|
|
...options,
|
|
result: { webpackVersion: null, ...options.result },
|
|
});
|
|
},
|
|
};
|