scratchy.js 226 B

123456789101112
  1. module.exports = function(config) {
  2. return {
  3. docs: {
  4. src: ['src/app/**/*.js','src/config.js'],
  5. dest: config.docsDir,
  6. options: {
  7. unslash: true,
  8. extension: '.asciidoc'
  9. }
  10. }
  11. }
  12. };