jsdoc-oblivion
Version:
A gray and blue theme for JSDoc.
24 lines (22 loc) • 517 B
JavaScript
;
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');
};