Erik
Erik
Opened a PR, going to need some help through. You can perform the change locally in your node_modules folder to generate a README, but its not a permanent fix obviously.
Would love to get this merged too, I have written a standalone plugin for this that we are using at the moment but feels like the functionality should live here
I'm looking for the same thing, but what pattern should be required? I guess you could pass a flag like `requirePatternForPreviousLineComment` and either pass a pattern yourself or just disabling...
I am having this issue too. ```ts session.defaultSession.getAllExtensions().map(e => { if (e.name === 'React Developer Tools') { session.defaultSession.loadExtension(e.path); } }); ``` This works, but should load automatically I think.
We are experiencing this issue as well, downgrading to [email protected] helped, for now. Hopefully this can be resolved. The downgrade diff does indeed show that the 7zip dependency has also...
Hello @joetidee and thanks for opening an issue! :) **First question:** Yes, there's a few reasons why this is the case. Firstly, it would make it impossible to pass the...
@joetidee That is definitively a better solution, especially for the cases that you give an example to. Added "Projects" to this repo and trying to add this issue there so...
```js const MediaQuery = ({ breakpoint, fixed, breakpoints, currentBreakpoint, children, }) => fixed ? breakpoints[currentBreakpoint] === breakpoints[breakpoint] ? children : null : breakpoints[currentBreakpoint] >= breakpoints[breakpoint] ? children : null ```...
@joetidee To cover the scenario of when you want the children to only be visible on that single breakpoint, and not breakpoint and up.
We should think about if this is something that should be in the lib in the first place, since the component that we would build here is exactly the same...