Script to run JSDocToolkit over our JS files.
It creates a documentation directory under app/soc/content/js
with the output for private and public docs, with or without
undocumented functions.
/** @constructor */
pack = function() {
this.init = function(){}
function config(){}
}
pack.build = function(task) {};
/** @memberOf pack */
pack.install = function() {}
/** @memberOf pack */
pack.install.overwrite = function() {}
/** @memberOf pack */
clean = function() {}
/** @memberOf pack-config */
install = function() {};