Currently, the logic calls glob.sync without specifying the options argument, this will lead to a problem where one needs to exclude certain directories to be included(e.g. node_modules):
|
var files = glob.sync(this.inputDirectory + this.matcher); |
Please allow optionally specified options via the class interface.
Currently, the logic calls
glob.syncwithout specifying theoptionsargument, this will lead to a problem where one needs to exclude certain directories to be included(e.g.node_modules):node-ssi/lib/SSI.js
Line 27 in 166c716
Please allow optionally specified options via the class interface.