Use promises instead of async in font concatenation (remove async dependency)
This commit is contained in:
@@ -117,7 +117,5 @@ module.exports = function(options, repo, params, id, reportTiles, reportFont) {
|
||||
});
|
||||
});
|
||||
|
||||
return new Promise(function(resolve, reject) {
|
||||
resolve(app);
|
||||
});
|
||||
return Promise.resolve(app);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user