X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=pack.js;h=e064aad56055050c0c765f23d51957b6d21b8a47;hp=d9178de6293955227a80259e916765b5131ef8a2;hb=HEAD;hpb=8354fa26bae86b85a5a6c28fc1efdbe19d6665d5 diff --git a/pack.js b/pack.js index d9178de..e064aad 100644 --- a/pack.js +++ b/pack.js @@ -12,20 +12,21 @@ * -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. - * -a autoBuild - puts target in INPUTDIR/compiled/Core-TIMESTAMP.js and enabled translastion + * * -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 = { @@ -91,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)