JSDOC/Packer.js
authoralan <alan@alanfast.akbkhome.com>
Wed, 21 Apr 2010 06:24:21 +0000 (14:24 +0800)
committeralan <alan@alanfast.akbkhome.com>
Wed, 21 Apr 2010 06:24:21 +0000 (14:24 +0800)
JSDOC/Packer.js

index f584207..80a26ec 100644 (file)
@@ -132,7 +132,7 @@ Packer.prototype = {
             }
            
             if (this.debugTarget) {
-                File.append(this.debugTarget, File.read(files[i]));
+                File.append(this.debugTarget, File.read(file));
             }
             // it's a good idea to check with 0 compression to see if the code can parse!!
             
@@ -141,14 +141,14 @@ Packer.prototype = {
             
        
             
-            var minfile = this.tmpDir + '/' +files.replace(/\//g, '.');
+            var minfile = this.tmpDir + '/' +file.replace(/\//g, '.');
             
             
             // let's see if we have a min file already?
             // this might happen if tmpDir is set .. 
             if (true && File.exists(minfile)) {
                 var mt = File.mtime(minfile);
-                var ot = File.mtime(files);
+                var ot = File.mtime(file);
                 print("compare : " + mt + "=>" + ot);
                 if (mt >= ot) {
                     continue;
@@ -171,11 +171,10 @@ Packer.prototype = {
             if (File.exists(minfile)) {
                 File.remove(minfile);
             }
-            var str = File.read(files);
-            var str = this.pack(str, files, minfile);
+            var str = File.read(file);
+            var str = this.pack(str, file, minfile);
             if (str.length) {
                 File.write(minfile, str);
-                this.tmpFiles.push(minfile);
             }
             
              
@@ -229,9 +228,9 @@ Packer.prototype = {
         
         print("MERGING SOURCE");
         
-        for(var i=0; i < files.length; i++)  {
-            
-            var minfile = bpath + '/' + this.files.replace(/\//g, '.');
+        for(var i=0; i < this.files.length; i++)  {
+            var file = this.files[i];
+            var minfile = this.tmpDir + '/' + file.replace(/\//g, '.');
             
             
             if (!File.exists(minfile)) {