phaser/tasks/builddoc.js

31 lines
654 B
JavaScript
Raw Normal View History

/**
* A quick stub-task for running generating the JSDocs.
* This should probably be migrated to use grunt-jsdoc@beta (for jsdoc 3.x) or similar.
*/
'use strict';
module.exports = function (grunt) {
grunt.registerTask('builddoc', 'Builds the project documentation', function () {
2014-11-03 19:21:00 +00:00
var done = this.async();
grunt.util.spawn({
cmd: 'jsdoc',
args: ['-c', 'conf.json', '../../README.md'],
opts: {
cwd: 'docs/build'
}
}, function (error, result, code) {
if (error) {
grunt.fail.warn("" + result);
done(false);
} else {
done();
}
});
});
};