1234567891011121314151617181920 |
- module.exports = function(grunt) {
- grunt.initConfig({
- pkg: grunt.file.readJSON('package.json'),
- jsdoc : {
- dist : {
- src: ['src/*.js', 'test/*.js', 'README.md'],
- options: {
- destination : 'docs',
- template : "node_modules/docdash"
- }
- }
- }
- });
- grunt.loadNpmTasks('grunt-jsdoc');
-
- grunt.registerTask('default', []);
- grunt.registerTask('docs', ['jsdoc']);
- };
|