mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 09:51:06 +08:00
Used `npx @yarnpkg/doctor .` to have the list of all missing deps. Added them with version range already used in the workspace to avoid downloading new dep (that's why yarn.lock is not modified)
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
import fs from 'fs';
|
|
import { presetsAddPreset, getFrameworks } from '@storybook/postinstall';
|
|
import { logger } from '@storybook/node-logger';
|
|
|
|
export default function transformer(file, api) {
|
|
const packageJson = JSON.parse(fs.readFileSync('./package.json'));
|
|
const frameworks = getFrameworks(packageJson);
|
|
|
|
let err = null;
|
|
let framework = null;
|
|
let presetOptions = null;
|
|
if (frameworks.length !== 1) {
|
|
err = `${frameworks.length === 0 ? 'No' : 'Multiple'} frameworks found: ${frameworks}`;
|
|
logger.error(`${err}, please configure '@storybook/addon-docs' manually.`);
|
|
return file.source;
|
|
}
|
|
|
|
// eslint-disable-next-line prefer-destructuring
|
|
framework = frameworks[0];
|
|
|
|
const { dependencies, devDependencies } = packageJson;
|
|
if (
|
|
framework === 'react' &&
|
|
((dependencies && dependencies['react-scripts']) ||
|
|
(devDependencies && devDependencies['react-scripts']))
|
|
) {
|
|
presetOptions = {
|
|
configureJSX: true,
|
|
};
|
|
}
|
|
|
|
const j = api.jscodeshift;
|
|
const root = j(file.source);
|
|
|
|
presetsAddPreset(`@storybook/addon-docs/preset`, presetOptions, { root, api });
|
|
|
|
return root.toSource({ quote: 'single' });
|
|
}
|