X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=pack.js;h=e064aad56055050c0c765f23d51957b6d21b8a47;hp=bb63856a6211e97a1ba59aa7766a2dae28bb27b4;hb=HEAD;hpb=3d2cb319f61e7309a20686c2210eac0b601bad9d diff --git a/pack.js b/pack.js old mode 100755 new mode 100644 index bb63856..e064aad --- a/pack.js +++ b/pack.js @@ -4,26 +4,37 @@ * 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. - * + * -k keepWhite - keeps the white space in the output files. + + * + * -m module name used with autoBuild to force a module name. + * -a autoBuild - puts target in INPUTDIR/compiled/MODULE-TIMESTAMP.js and enables translastion* * compresses files listed as arguments and outputs result */ + +const File = imports.File.File; +const Packer = imports.JSDOC.Packer.Packer; + -Packer = imports['JSDOC/Packer.js'].Packer; -File = imports.File.File; -var args = Array.prototype.slice.call(Seed.argv); +var args = Array.prototype.slice.call(typeof(Seed) != 'undefined' ? Seed.argv : ARGV); args.shift(); //seed args.shift(); // pack.js var cfg = { files : [], target : false, + srcfiles : [], + autoBuild : false, + keepWhite : false } @@ -33,6 +44,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++; @@ -48,15 +64,35 @@ for(var i =0; i < args.length;i++) { i++; continue; } + if (args[i] == '-C') { cfg.cleanup = false; continue; } + if (args[i] == '-f') { + 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] == '-k') { + cfg.keepWhite = true + continue; + } if (cfg.files.indexOf(args[i]) > -1) { continue; // remove dupes. } cfg.files.push(args[i]); } +print(JSON.stringify(args,null,4)); var pack; try { pack = new Packer(cfg)