Denis Malinochkin

Results 104 comments of Denis Malinochkin

I am also having this problem on Windows 10 (build 1511) with Node js **v5.9.0** and npm **v3.8.5**.

@stanislavromanov Holy Grail! :bomb: :boom:

@devongovett, @LinusU, please, close this issue. Not reproduced in Atom `1.11.0-beta5`. ![2016-09-08_15-05-51](https://cloud.githubusercontent.com/assets/7034281/18348720/c28f24ec-75d5-11e6-9f0a-865e8aaf0b27.gif)

Hello, @Haegi, It's an interesting situation. I'll take a look at it. Right now I can assume that the current behavior is related to the use of the `setImmediate` function...

I think we can remove the problematic method inside the `@nodelib/fs.walk` dependency. Will be fixed in the next major version of the `@nodelib/fs.walk` package that will be used in the...

Hello, @ihatzi, Looks like `'` is a special character and it must be escaped by `\\`.

JFYI: https://github.com/mrmlnc/fast-glob/pull/331#issuecomment-1005202259 and below.

```js '**/library/*/book.md' micromatch { re: /^(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)library\/(?!\.)(?=.)[^/]*?\/book\.md)$/ } fast-glob.utils.pattern.makeRe { re: /^(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)library\/(?!\.)(?=.)[^/]*?\/book\.md)$/ } --- '{book.xml,**/library/*/book.md}' micromatch { re: /^(?:(book\.xml|(?:(?:(?!(?:^|\/)\.).)*?)\/library\/(?!\.)(?=.)[^/]*?\/book\.md))$/ } fast-glob.utils.pattern.makeRe { re: /^(?:(book\.xml|(?:(?:(?!(?:^|\/)\.).)*?)\/library\/(?!\.)(?=.)[^/]*?\/book\.md))$/ } ``` Well, looks like this is...

Hello, @evilebottnawi, You really want to use negative patterns in the `ignore` property? Right now you can use positive patterns instead of negative and it's works fine.