diff --git a/index.js b/index.js index d9f02cd..30559f5 100644 --- a/index.js +++ b/index.js @@ -38,6 +38,7 @@ var endStream = function(opts){ // all the fontforge magic is done. // the generated files are in the temp folder now _.map(o.types, function(type) { + console.log(o.full) var fn = o.full.file + '.' + type; var f = new File({path: o.fontFilename + "." + type}); f.contents = fs.createReadStream(fn); @@ -52,9 +53,9 @@ function gulpWebfont(o) { if(!o.folder){ o.folder = new Date().getTime(); } - + sources[o.folder] = []; - + // Creating a stream through which each file will pass return through.obj(bufferContents(o.folder), endStream(options)); }