UNPKG

jsdoc-oblivion

Version:
24 lines (22 loc) 517 B
'use strict'; module.exports = function (grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), jsdoc : { dist : { src: [ './fixtures/**/*.js', 'README.md' ], jsdoc: './node_modules/.bin/jsdoc', options: { destination: 'docs', configure: './config/conf.json', template: './template' } } } }); grunt.registerTask('default', ['grunt-jsdoc']); grunt.loadNpmTasks('grunt-jsdoc'); };