Added support for verbose option that returns filenames of each inlined file alongside inlined html.

This commit is contained in:
Alexandre Gigliotti
2015-07-24 15:51:46 -07:00
parent dd4f03257c
commit 3cfd4f2b86
6 changed files with 73 additions and 37 deletions

View File

@@ -3,7 +3,7 @@ var path = require('path');
var fs = require('fs');
var filepath = path.resolve(__dirname, './fixtures/index.html');
var options = {};
var options = {verbose: true};
inline(filepath, options)
.then(function (html) {