Scott Rippey
Scott Rippey
I've merged and published a new version, `0.9.1`. This includes primarily a new README, which includes instructions for using webpack aliases for Storybook, which fixes this issue.
This issue seems to affect all users of Urql v4 ... which seems like a pretty big deal. Around 2 months ago, URQL added these headers by default: https://github.com/urql-graphql/urql/blob/1470a9c7474c75b65303b503c0a3a51e895f1a38/packages/core/src/internal/fetchOptions.ts#L125-L126 ```...
@kettanaito You're correct, the presence of `text/event-stream` is why MSW skips these requests. However, URQL's `Accept` header has **five** acceptable formats, not just `text/event-stream` -- it also lists `application/json`, and...
Example usage: ``` .main-content { .button { .button-icon { background-image: @button-icon; (.button):hover { background-image: @button-icon-hover; } (.button).focus { background-image: @button-icon-focus; } .ie8 (.main-content) { background-image: @button-icon-ie8; } } } }...
I do the same thing -- I duplicate my nested blocks with the overrides. In a real-world scenario, this results in an unmanageable amount of duplication. FYI, in your example,...
Can you explain "assign variables and use those as part of selector chains"?
That's a good example ... if the "parent target" matches multiple items, we'd want to choose just one. Choosing the "closest" one is my first reaction. But I think this...
So far, I've scratched down several attempts to invent a syntax that I like ... and the parenthesis so far is my favorite. It seems readable, and definitely catches your...
I agree. This over-complication is a result of a very complicated LESS structure, and time would probably be better spent in simplifying the LESS code instead of introducing a very...
@chriseppstein That's pretty cool, I like how `&` acts like a variable, on which you can perform funcitons. Makes this concept much easier to understand and read.