pack.js
[gnome.introspection-doc-generator] / pack.js
diff --git a/pack.js b/pack.js
old mode 100755 (executable)
new mode 100644 (file)
index 52fb639..95d3c1e
--- a/pack.js
+++ b/pack.js
@@ -4,18 +4,22 @@
  * packer command line
  * 
  * -o Output
+ * -O Output debug file here.
  * -t Translate json file.
  * -w Cache / working dir.
  * -f File to read with a list of source paths / or class names.
  * -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
  */
+File            = imports.File.File;
+Packer          = imports.JSDOC.Packer.Packer;
+
 
-Packer          = imports['JSDOC/Packer.js'].Packer;
-File = imports.File.File;
  
   
 
@@ -25,6 +29,9 @@ args.shift(); // pack.js
 var cfg = {
     files : [],
     target : false,
+    srcfiles : [],
+    outputIndex : false,
+    autoVersion : false
 }
 
 
@@ -34,6 +41,11 @@ for(var i =0; i < args.length;i++) {
         i++;
         continue;
     }
+    if (args[i] == '-O') {
+        cfg.debugTarget = args[i+1];
+        i++;
+        continue;
+    }
     if (args[i] == '-t') {
         cfg.translateJSON = args[i+1];
         i++;
@@ -49,15 +61,24 @@ for(var i =0; i < args.length;i++) {
         i++;
         continue;
     }
     if (args[i] == '-C') {
         cfg.cleanup = false;
         continue;
     }
     if (args[i] == '-f') {
-        cfg.srclist = args[i+1];
+        cfg.srcfiles.push(args[i+1]);
         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.
     }