X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=pack.js;h=da02090af535a49b4f650b645bf460bd7a1782a6;hb=09e90012c223927902c879351bf9b3da52fc7ddb;hp=c51f006017b92227e3aa28c39d09b69ad68babcb;hpb=584f17e8519442d0932166895f7cc95302674205;p=gnome.introspection-doc-generator diff --git a/pack.js b/pack.js index c51f006..da02090 100644 --- a/pack.js +++ b/pack.js @@ -11,6 +11,8 @@ * -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 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 */ @@ -27,7 +29,9 @@ args.shift(); // pack.js var cfg = { files : [], target : false, - srcfiles : [] + srcfiles : [], + autoBuild : false, + module : false } @@ -67,6 +71,19 @@ for(var i =0; i < args.length;i++) { 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. }