X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=pack.js;h=c51f006017b92227e3aa28c39d09b69ad68babcb;hb=f68ec0c532ef9ea0eb9c3c5d62b6e182aebde028;hp=4d7f6e5eaaa66852c05dcb9ea65850b6b9a0d12c;hpb=b73cdf0c8b85ed1e928f01118bd6629f5c3268cb;p=gnome.introspection-doc-generator diff --git a/pack.js b/pack.js old mode 100755 new mode 100644 index 4d7f6e5..c51f006 --- a/pack.js +++ b/pack.js @@ -4,18 +4,20 @@ * packer command line * * -o Output + * -O Output debug file here. * -t Translate json file. * -w Cache / working dir. * -f File to read with a list of source paths / or class names. * -C no cleanup (use with -w if you need are using a cache directory.) * -p prefix for translation md5 generator (directory that files are in, and is removed * from path when generating an md5 for the translated name. - * * compresses files listed as arguments and outputs result */ + +File = imports.File.File; +Packer = imports.JSDOC.Packer.Packer; + -Packer = imports['JSDOC/Packer.js'].Packer; -File = imports.File.File; @@ -25,6 +27,7 @@ args.shift(); // pack.js var cfg = { files : [], target : false, + srcfiles : [] } @@ -34,6 +37,11 @@ for(var i =0; i < args.length;i++) { i++; continue; } + if (args[i] == '-O') { + cfg.debugTarget = args[i+1]; + i++; + continue; + } if (args[i] == '-t') { cfg.translateJSON = args[i+1]; i++; @@ -49,12 +57,13 @@ for(var i =0; i < args.length;i++) { i++; continue; } + if (args[i] == '-C') { cfg.cleanup = false; continue; } if (args[i] == '-f') { - cfg.srcfile = args[i+1]; + cfg.srcfiles.push(args[i+1]); i++; continue; }