phaser/tasks/options/jsdoc.js
vulvulune 7be4b8d7a9 Replace the grunt docs tasks with grunt-jsdoc
Replace builddoc and exportdocjson grunt tasks with grunt-jsdoc.
To avoid an error I added a fake comment to a @todo param in the p2.js
file.
2015-01-22 16:22:51 +01:00

19 lines
No EOL
707 B
JavaScript

module.exports = {
html: {
src: ['./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: {
src: [],
options: {
configure: 'tasks/jsdocexportjson-conf.json',
/* The destination optios must be redefined event if there is always in the configure file otherwise, grunt-jsdoc overwrite it with its default value */
destination: './out'
}
}
};