node-globule
node-globule copied to clipboard
An easy-to-use wildcard globbing library.
Bumps [diff](https://github.com/kpdecker/jsdiff) to 4.0.2 and updates ancestor dependency [grunt-contrib-nodeunit](https://github.com/gruntjs/grunt-contrib-nodeunit). These dependencies need to be updated together. Updates `diff` from 1.4.0 to 4.0.2 Changelog Sourced from diff's changelog. Release Notes Development...
Bumps [ejs](https://github.com/mde/ejs) to 3.1.8 and updates ancestor dependency [grunt-contrib-nodeunit](https://github.com/gruntjs/grunt-contrib-nodeunit). These dependencies need to be updated together. Updates `ejs` from 2.7.4 to 3.1.8 Release notes Sourced from ejs's releases. v3.1.8 Version...
Bumps [json-schema](https://github.com/kriszyp/json-schema) and [jsprim](https://github.com/joyent/node-jsprim). These dependencies needed to be updated together. Updates `json-schema` from 0.2.3 to 0.4.0 Commits f6f6a3b Use a little more robust method of checking instances ef60987 Update...
Removes [shelljs](https://github.com/shelljs/shelljs). It's no longer used after updating ancestor dependency [grunt-contrib-jshint](https://github.com/gruntjs/grunt-contrib-jshint). These dependencies need to be updated together. Removes `shelljs` Updates `grunt-contrib-jshint` from 1.1.0 to 3.2.0 Release notes Sourced from...
Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.0.5. Commits 707e1b2 3.0.5 a8763f4 Improve redos protection, add many tests bafa295 Use master branch for travis badge 013d64d update travis See full diff in...
Bumps [qs](https://github.com/ljharb/qs) from 6.5.2 to 6.5.3. Changelog Sourced from qs's changelog. 6.5.3 [Fix] parse: ignore __proto__ keys (#428) [Fix] utils.merge: avoid a crash with a null target and a truthy...
## Description This PR is to use [micromatch](https://github.com/micromatch/micromatch) instead of minimatch. This change addresses the performance and safety issues that have been found in minimatch. For more general information on...
So, was having an issue with grunt-contrib-watch not properly globbing the following exclusion: ``` javascript //Gruntfile.js watch: { js: { files: [ '/**/*.js', '!**/node_modules/**' ], tasks: ['dev'] } }, yeoman:...
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...
it appeared using a pattern like !(file1|file2) yielded to wrong path selection, this is due to that processPatterns just removes the ! from the pattern. however for the grouping it...