metalsmith-inspect-files
v1.0.2
Published
Metalsmith plugin that prints files tree in selected build step
Downloads
24
Maintainers
Readme
metalsmith inspect files
This is metalsmith plugin that prints files tree in selected build step.
Example with printing build result:
const Metalsmith = require('metalsmith');
const metalsmithInspectFiles = require('metalsmith-inspect-files');
Metalsmith(__dirname)
.source('./source')
.destination('./build')
.clean(true)
.use(metalsmithInspectFiles())
.build((err, files) => {
if (err) { throw err; }
});

