UNPKG

digitalocean-api

Version:
24 lines (18 loc) 362 B
module.exports = function(grunt) { // Project configuration. grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), jsdoc : { dist : { src: ['lib/*.js'], options: { destination: 'docs', private: false } } } }); grunt.loadNpmTasks('grunt-jsdoc'); // Default task(s). grunt.registerTask('default', ['jsdoc']); };