X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=pack.js;h=aaa9ec4153e85a2d8e882de02622c6290ece809c;hp=52fb639d6107f82fa32f857b8b0aeccd5f35f161;hb=606dd44c698e6b7c7b93ab80a783224c97fd85d0;hpb=2994fedbb9237bc8b059e2233ac8da17ddb0b964 diff --git a/pack.js b/pack.js old mode 100755 new mode 100644 index 52fb639..aaa9ec4 --- a/pack.js +++ b/pack.js @@ -4,18 +4,24 @@ * 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. - * + * -w keepWhite - keesp the white space in the output files. + * -a autoBuild - puts target in INPUTDIR/compiled/Core-TIMESTAMP.js and enabled translastion + * + * -m module name used with autoBuild to force a module 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 +31,9 @@ args.shift(); // pack.js var cfg = { files : [], target : false, + srcfiles : [], + autoBuild : false, + module : false } @@ -34,6 +43,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,15 +63,29 @@ for(var i =0; i < args.length;i++) { i++; continue; } + if (args[i] == '-C') { cfg.cleanup = false; continue; } if (args[i] == '-f') { - cfg.srclist = args[i+1]; + cfg.srcfiles.push(args[i+1]); i++; continue; } + if (args[i] == '-m') { + cfg.module = args[i+1]; + i++; + continue; + } + if (args[i] == '-a') { + cfg.autoBuild = true + continue; + } + if (args[i] == '-w') { + cfg.keepWhite = true + continue; + } if (cfg.files.indexOf(args[i]) > -1) { continue; // remove dupes. }