Fix an issue causing babel errors

This commit is contained in:
Kasper Peulen 2023-02-21 14:43:34 +01:00
parent 4cb87c3417
commit 5d5bb8175b
4 changed files with 13 additions and 5 deletions

View File

@ -58,7 +58,6 @@
"lodash": "^4.17.21",
"prettier": "^2.8.0",
"recast": "^0.23.1",
"ts-dedent": "^2.2.0",
"util": "^0.12.4"
},
"devDependencies": {
@ -70,6 +69,7 @@
"mdast-util-mdxjs-esm": "^1.3.1",
"remark": "^14.0.2",
"remark-mdx": "^2.2.1",
"ts-dedent": "^2.2.0",
"typescript": "~4.9.3",
"unist-util-is": "^5.2.0",
"unist-util-select": "^4.0.3",

View File

@ -310,6 +310,9 @@ test('extract all story attributes', () => {
}}>
{Template.bind({})}
</Story>
<Story name="Second">{Template.bind({})}</Story>
`;
jscodeshift({ source: input, path: 'Foobar.stories.mdx' });
@ -341,6 +344,11 @@ test('extract all story attributes', () => {
},
};
export const Second = {
render: Template.bind({}),
name: 'Second',
};
`);
});

View File

@ -199,7 +199,7 @@ export function transform(source: string, baseName: string): [mdx: string, csf:
if (child.type === 'text') {
return t.arrowFunctionExpression([], t.stringLiteral(child.value));
}
if (child.type === 'mdxFlowExpression') {
if (child.type === 'mdxFlowExpression' || child.type === 'mdxTextExpression') {
const expression = babelParseExpression(child.value);
// Recreating those lines: https://github.com/storybookjs/mdx1-csf/blob/f408fc97e9a63097ca1ee577df9315a3cccca975/src/sb-mdx-plugin.ts#L185-L198

View File

@ -41,9 +41,6 @@
"prep": "../../../scripts/prepare/bundle.ts"
},
"dependencies": {
"@babel/generator": "^7.20.4",
"@babel/parser": "^7.20.3",
"@babel/traverse": "^7.20.1",
"@babel/types": "^7.20.2",
"@storybook/csf": "next",
"@storybook/types": "7.0.0-beta.52",
@ -52,6 +49,9 @@
"ts-dedent": "^2.0.0"
},
"devDependencies": {
"@babel/generator": "^7.20.4",
"@babel/parser": "^7.20.3",
"@babel/traverse": "^7.20.1",
"@types/fs-extra": "^11.0.1",
"@types/js-yaml": "^3.12.6",
"js-yaml": "^3.14.1",