JSDOC/Packer.vala
authorAlan Knowles <alan@roojs.com>
Mon, 2 Nov 2015 09:27:56 +0000 (17:27 +0800)
committerAlan Knowles <alan@roojs.com>
Mon, 2 Nov 2015 09:27:56 +0000 (17:27 +0800)
JSDOC/Packer.vala

index 3976e18..11f36fd 100644 (file)
@@ -64,11 +64,14 @@ namespace JSDOC
                * @cfg {String} target to write files to - must be full path.
                */
                string target;
+               FileOutputStream targetStream = null;
                /**
                 * @cfg {String} debugTarget target to write files debug version to (uncompacted)- must be full path.
                 */
                string targetDebug;
-       
+               
+
+               FileOutputStream targetDebugStream  = null;
                /**
                 * @cfg {String} tmpDir  (optional) where to put the temporary files. 
                 *      if you set this, then files will not be cleaned up
@@ -117,8 +120,7 @@ namespace JSDOC
                                this.files.add(f); //?? easier way?
                        }
                }
-               FileOutputStream targetStream = null;
-               FileOutputStream targetDebugStream  = null;
+       
                
                public void pack()
                {
@@ -321,6 +323,8 @@ namespace JSDOC
                        print("using MIN FILE  "+ minfile);
                        if (str.length) {
                            if (this.target) {
+                                       this.debugTarget.write(file_contents); 
+                           
                                File.append(this.target, '//' + file + "\n");   
                                File.append(this.target, str + "\n");   
                            } else {