Glen

Results 238 comments of Glen

Ah, okay, I didn't know about that. It's a bit of an odd name. :smile: I think the DNX commands use lower or possibly camelCase, so I guess it'll be...

Or maybe look for [browserslist](https://github.com/browserslist/browserslist/) configuration.

Oh, apologies, I'm new to webhint and I should have noticed that. So is this effectively about adding `not IE > 0` when a user is either not using `browserslist`,...

> Actually this is already solved in 12 and more elegantly in 13 @michaelstaib Do you have examples? 🙂

@michaelstaib I'm using 13, is it different?

Is this considered blocked, or are the linked issues just nice-to-haves? Keyset pagination can be implemented without row-value comparison. What is Skip/TakeLast needed for?

Maybe `Projects`, invokable multiple times? ```cs descriptor.Field("fullName") .Projects(u => u.FirstName) .Projects(u => u.LastName) .Resolve(ctx => ctx.Parent().FirstName + " " + ctx.Parent().LastName); ``` Could also be written as (based on the...

See also https://github.com/formatjs/formatjs/discussions/2476.