Norbert de Langen 1e9e0c4861
Merge pull request #19831 from storybookjs/tech/legacy-api-storyshots
Tech: TypeScript should check stories and tests as well
2022-11-14 17:35:33 +01:00
..
2022-11-14 01:52:46 +00:00
2022-10-29 19:49:45 +08:00
2022-11-14 14:18:39 +01:00

CSF Plugin

The CSF plugin reads CSF files and enriches their content via static analysis. It supports Webpack, Vite, and other bundlers using unplugin.

Source snippets

CSF plugin can add static source snippets to each story. For example:

export const Basic = () => <Button />;

Would be transformed to:

export const Basic = () => <Button />;
Basic.parameters = {
  storySource: {
    source: '() => <Button />',
  },
  ...Basic.parameters,
};

This allows @storybook/addon-docs to display the static source snippet.