packages/core/Gruntfile.js (19 lines of code) (raw):

module.exports = function(grunt) { // Project configuration. grunt.initConfig({ jsdoc: { dist: { src: ['lib/**/*.js', 'README.md'], dest: 'docs', options: { configure: 'jsdoc_conf.json' } } }, clean: { folder: ['docs'] } }); // Register jsdoc as a grunt task grunt.loadNpmTasks('grunt-jsdoc'); grunt.loadNpmTasks('grunt-contrib-clean'); grunt.registerTask('docs', ['clean', 'jsdoc']); };