This seems like a bug to me, intuitively, but I don't see it addressed in the docs anywhere:
var minimatch = require("minimatch");
minimatch("foo/bar.js", "**/foo/**") // true
minimatch("./foo/bar.js", "./**/foo/**") // true
minimatch("./foo/bar.js", "**/foo/**") // false
Shouldn't the last example return true because **/ should match ./?
Ref. cowboy/node-globule#11
This seems like a bug to me, intuitively, but I don't see it addressed in the docs anywhere:
Shouldn't the last example return
truebecause**/should match./?Ref. cowboy/node-globule#11