我的某些组件中有错误,因此我尝试仅为我的react-styleguidist服务器找到一个组件。但是每次启动服务器时,即使在react-styleguidist build
之后,服务器也会显示完全相同的内容。
用于定位组件和重建样式指南的多种语法。
配置文件:
module.exports = {
components: 'src/js/components/grommet/Button/Button.tsx}',
webpackConfig: require('./config/webpack.config.dev'),
styleguideComponents: {
Wrapper: path.join(__dirname, 'lib/styleguide/Wrapper'),
},
skipComponentsWithoutExample: true,
propsParser: require('react-docgen-typescript').withDefaultConfig({
skipPropsWithoutDoc: false,
}).parse,
};
我希望只看到按钮组件,但我会看到项目的所有组件。