You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
647 B

  1. /*******************************
  2. Docs
  3. *******************************/
  4. /* Paths used for "serve-docs" and "build-docs" tasks */
  5. module.exports = {
  6. base: '',
  7. paths: {
  8. source: {
  9. config : 'src/theme.config',
  10. definitions : 'src/definitions/',
  11. site : 'src/site/',
  12. themes : 'src/themes/'
  13. },
  14. output: {
  15. less : '../docs/out/src/',
  16. packaged : '../docs/out/dist/',
  17. uncompressed : '../docs/out/dist/components/',
  18. compressed : '../docs/out/dist/components/',
  19. themes : '../docs/out/dist/themes/'
  20. },
  21. clean: '../docs/out/dist/'
  22. }
  23. };