scratchy.js 261 B

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