pack.js
[gnome.introspection-doc-generator] / pack.js
diff --git a/pack.js b/pack.js
index 95d3c1e..6cf3046 100644 (file)
--- 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.
- * -a autoversion - suffixes the latest timestamp eg. Core-100000000.js
- * -i update index file in output directory.
+ * -k keepWhite - keeps 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,7 @@ var cfg = {
     files : [],
     target : false,
     srcfiles : [],
-    outputIndex : false,
-    autoVersion : false
+    autoBuild : false
 }
 
 
@@ -71,12 +72,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] == '-k') {
+        cfg.keepWhite = true
         continue;
     }
     if (cfg.files.indexOf(args[i]) > -1) {