Update Packer code to working copy
[gnome.introspection-doc-generator] / pack.js
diff --git a/pack.js b/pack.js
index c51f006..c31d342 100755 (executable)
--- a/pack.js
+++ b/pack.js
  * -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
  */
  
@@ -27,7 +32,9 @@ args.shift(); // pack.js
 var cfg = {
     files : [],
     target : false,
-    srcfiles : []
+    srcfiles : [],
+    autoBuild : false,
+    keepWhite : false
 }
 
 
@@ -67,6 +74,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] == '-k') {
+        cfg.keepWhite = true
+        continue;
+    }
     if (cfg.files.indexOf(args[i]) > -1) {
         continue; // remove dupes.
     }