X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=pack.js;h=aaa9ec4153e85a2d8e882de02622c6290ece809c;hp=c8e0d509e7f9b4ca0e4dc183b14819a696d23e9d;hb=606dd44c698e6b7c7b93ab80a783224c97fd85d0;hpb=9a1c4590036de394beb2cb9ed2f85a1e40dfb827 diff --git a/pack.js b/pack.js index c8e0d50..aaa9ec4 100644 --- a/pack.js +++ b/pack.js @@ -11,8 +11,10 @@ * -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. + * -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 */ @@ -30,8 +32,8 @@ var cfg = { files : [], target : false, srcfiles : [], - outputIndex : false, - autoversion : false + autoBuild : false, + module : false } @@ -71,12 +73,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] == '-w') { + cfg.keepWhite = true continue; } if (cfg.files.indexOf(args[i]) > -1) {