import recast from 'recast'; import { isExportStory } from '@storybook/csf'; function exportMdx(root, options) { // eslint-disable-next-line no-underscore-dangle const path = root.__paths[0]; // FIXME: insert the title as markdown after all of the imports return path.node.program.body .map(n => { const { code } = recast.prettyPrint(n, options); if (n.type === 'JSXElement') { return `${code}\n`; } return code; }) .join('\n'); } function parseIncludeExclude(prop) { const { code } = recast.prettyPrint(prop, {}); // eslint-disable-next-line no-eval return eval(code); } /** * Convert a component's module story file into an MDX file * * For example: * * ``` * input { Button } from './Button'; * export default { * title: 'Button' * } * export const story = () =>