X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=pack.js;h=e064aad56055050c0c765f23d51957b6d21b8a47;hp=95d3c1ed4d12da2ab635ba783903372a85ce6d3e;hb=HEAD;hpb=4e719b43216df0f2c41807fb6b0c6406c2d9f4b1 diff --git a/pack.js b/pack.js index 95d3c1e..e064aad 100644 --- a/pack.js +++ b/pack.js @@ -11,27 +11,30 @@ * -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. - * -a autoversion - suffixes the latest timestamp eg. Core-100000000.js - * -i update index file in output directory. + * -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 */ -File = imports.File.File; -Packer = imports.JSDOC.Packer.Packer; +const File = imports.File.File; +const Packer = imports.JSDOC.Packer.Packer; -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 : [], - outputIndex : false, - autoVersion : false + autoBuild : false, + keepWhite : false } @@ -71,12 +74,17 @@ for(var i =0; i < args.length;i++) { i++; continue; } - if (args[i] == '-i') { - cfg.outputIndex = true + if (args[i] == '-m') { + cfg.module = args[i+1]; + i++; continue; } if (args[i] == '-a') { - cfg.autoVersion= true + cfg.autoBuild = true + continue; + } + if (args[i] == '-k') { + cfg.keepWhite = true continue; } if (cfg.files.indexOf(args[i]) > -1) { @@ -84,6 +92,7 @@ for(var i =0; i < args.length;i++) { } cfg.files.push(args[i]); } +print(JSON.stringify(args,null,4)); var pack; try { pack = new Packer(cfg)