Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Commit

Permalink
console.log to debug in empcar
Browse files Browse the repository at this point in the history
  • Loading branch information
jipi-dev committed Mar 6, 2023
1 parent 132163e commit c4a9003
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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));
}
Expand Down

0 comments on commit c4a9003

Please sign in to comment.