From c4a90034b3ca4b9b833f25be242352818c1e66bd Mon Sep 17 00:00:00 2001 From: "Esteban (jipi) Coria" Date: Mon, 6 Mar 2023 16:21:28 -0300 Subject: [PATCH] console.log to debug in empcar --- index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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)); }