module.exports = function()

in packages/core/Gruntfile.js [1:23]


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']);
};