styleguide.config.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. const path = require('path');
  2. module.exports = {
  3. // components: './src/components/*.jsx',
  4. title: 'Emealay Documentation',
  5. pagePerSection: true,
  6. exampleMode: 'hide', // 'hide' | 'collapse' | 'expand'
  7. usageMode: 'expand', // 'hide' | 'collapse' | 'expand'
  8. ignore: ['**/*.util.{jsx,js}', '**/use*.{jsx,js}'], // Styleguidist can only document components, not pure functions or Hooks. That is why these must be ignored.
  9. styleguideDir: './docs',
  10. sections: [
  11. {
  12. name: 'Button Components',
  13. description: 'Different Buttons or clickable Icons and Text',
  14. components: './src/components/Buttons/*.jsx',
  15. },
  16. {
  17. name: 'Image Components',
  18. description: 'Everything related to uploading and displaying images',
  19. components: './src/components/Images/*.jsx',
  20. },
  21. {
  22. name: 'Meal Components',
  23. components: './src/components/Meals/*.jsx',
  24. },
  25. {
  26. name: 'Plan Components',
  27. components: './src/components/Plans/*.jsx',
  28. },
  29. {
  30. name: 'Settings Components',
  31. components: './src/components/Settings/*.jsx',
  32. },
  33. {
  34. name: 'Social/Contacts Components',
  35. components: './src/components/Social/*.jsx',
  36. },
  37. {
  38. name: 'Util Components',
  39. components: ['./src/components/util/*.jsx'],
  40. },
  41. ],
  42. }