I found it's not working when I match relative path: ``` globule.isMatch('./test/*', 'test/myFile.js') // reture false ``` I have to write like this: ``` globule.isMatch('test/*', 'test/myFile.js') ``` Any idea if we can fix this?