Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 330 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 330 Bytes

bit-docs-glob-finder

Given a siteConfig, returns an EventEmitter that fires "match" events with the file path and the source.

var finder = require("bit-docs-glob-finder");

finder({
    glob: {
        pattern: "**/*.{js,md}",
        cwd: path.join(__dirname,"test"),
        ignore: "node_mods/**/*"
    }
});