phaser/tasks/options/jsdoc.js

20 lines
769 B
JavaScript
Raw Normal View History

module.exports = {
html: {
2015-03-26 02:55:18 +00:00
src: ['d:/wamp/www/phaser/README.md'],
options: {
configure: 'tasks/jsdoc-conf.json',
/* The destination and private options must be redefined event if there are always in the configure file otherwise, grunt-jsdoc overwrite it with its default values */
destination: 'docs',
private: false
}
},
json: {
jsdoc: './node_modules/.bin/jsdoc',
src: [],
options: {
configure: 'tasks/jsdocexportjson-conf.json',
2015-03-26 02:55:18 +00:00
/* The destination options must be redefined event if there is always in the configure file otherwise, grunt-jsdoc overwrite it with its default value */
destination: './out'
}
}
};