mirror of
https://github.com/photonstorm/phaser
synced 2024-12-03 18:10:10 +00:00
7be4b8d7a9
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.
19 lines
No EOL
707 B
JavaScript
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'
|
|
}
|
|
}
|
|
}; |