Eli-Black-Work

Results 82 comments of Eli-Black-Work

Hi @istarkov! I wasn't expecting such a quick reply :) Unfortunately, I don't think that's enough. The MIT license says in it that "The above copyright notice and this permission...

Hi @istarkov. Thanks for the reply. Since I'm at work, I'm not sure if I'll be able to provide a PR, sorry. Anyway, it looks like we're no longer using...

As a workaround, users can add the following lines to their .yarmrc.yml file 🙂 ```yml # react-step-progress-bar depends on react-transition-group, which lists react-dom as a peerDependency. This means that react-step-progress-bar...

Good question! :) I'd note that even if EF Core 5.0 does support this, I think it'd still be nice to have this NuGet package for those who can't upgrade...

Calling `JsonConvert.DeserializeObject()` with `"null"` will return `null` when deserializing into a class, too. e.g. ```c# public class User { } ... User user = JsonConvert.DeserializeObject("null"); // Prints `true` Console.WriteLine(user ==...

@LoganBarnett That fixed it! Thank you so much! 🙂 Do you think this is something that `svg-sprite-loader` should handle, or do you think it's a webpack bug?

@LoganBarnett Sounds good. Thanks again 🙂

I think this got fixed at some point, as I'm no longer seeing this issue when using the following versions: * `svg-sprite-loader` 6.0.5 * `webpack` 5.31.2 * `webpack-cli` 4.6.0 🙂

Never mind, just ran into this again.