pack.js
[gnome.introspection-doc-generator] / pack.js
diff --git a/pack.js b/pack.js
index fa189dc..95d3c1e 100644 (file)
--- 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 autoversion - suffixes the latest timestamp eg. Core-100000000.js
+ * -i update index file in output directory.
  * compresses files listed as arguments and outputs result
  */
  
@@ -28,6 +30,8 @@ var cfg = {
     files : [],
     target : false,
     srcfiles : [],
+    outputIndex : false,
+    autoVersion : false
 }
 
 
@@ -67,6 +71,14 @@ for(var i =0; i < args.length;i++) {
         i++;
         continue;
     }
+    if (args[i] == '-i') {
+        cfg.outputIndex = true
+        continue;
+    }
+    if (args[i] == '-a') {
+        cfg.autoVersion= true
+        continue;
+    }
     if (cfg.files.indexOf(args[i]) > -1) {
         continue; // remove dupes.
     }