Michael Shilman 87b2781a53 Turn this into a loader
So that it runs on code that still contains comments
2022-10-30 17:19:35 +08:00
..
2022-10-30 17:19:35 +08:00
2022-10-29 19:49:45 +08: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.