Luca Parolari
Luca Parolari
After diving a bit into the problem and reading this illuminating issue https://github.com/nestjs/graphql/issues/226, I found that my problem is due to this portion of code https://github.com/fivethree-team/nestjs-prisma-starter/blob/d628befcf507f4c7ab7b0fb55697ef997063e40e/src/resolvers/auth/auth.resolver.ts#L46-L49 and in particular to...
@marcjulian Thank you a lot! I followed the issue you reported and worked like a charm. Do you think that is useful to add this trick to the project or...
@marcjulian Sure, just did it. I hope it might help.
+1 That would be very useful. Thank you
Do you know what needs the update? Can you post the code needed to fix this issue? Thanks!
I'm doing some tests to understand how to chain together the two regex from `ignore` and from `--dir`. My scenario is - syncing "Documents" dir - ignore some files like...
I've made a small cpp example with some regex combination: ```cpp #include #include #include #include template void eval_regex(InIter f, InIter l, boost::regex r) { for( ; f != l; ++f)...
Got it! I've created two regex, one for excluded files and dirs and one for included. The ignore regex catch all ignored file in path: ```regex ^(\.*(ign1|ign2|...)\.*)$ ``` The included...
Yes, I don't know if it works in every cases. i did not run tests. I think that with a `.griveignore` and simple rules in it, it can works, but...
@shaansheikh Like I said above, my fix is unstable and I didn't run unit tests to prove the absence of errors. It can be an idea for the developer but...