Cody Brouwers

Results 14 comments of Cody Brouwers

Also looking into this issue today. It seems that whenever Chrome releases a new browser version there is a period of time where Github's runners install can run both the...

Would love to be able to opt-in to this warning. In the meantime, similar to @defualt, I've used [patch-package](https://github.com/ds300/patch-package) to apply the below patch to ignore the warning only if...

@toioski Ah yes, I've encountered that issue with patch-package as well. Better to just make the same changes and patch it yourself I think.

Thanks for the above, works great for iOS. Also trying to set it up on Android, but it looks like [here](https://github.com/Microsoft/AppCenter-SDK-React-Native/blob/8efd255623163c9e73b95c3eeee3e6593cc9398e/appcenter-link-scripts/src/android/AppCenterConfig.js#L41) that Android looks for the first `appcenter-config.json` file it...

@TroubleMakerBen that is a great idea, thanks so much for the quick response! I ended up doing this earlier today: ```gradle buildTypes { debug { if (getCurrentBuildType() == "debug") {...

Same issue, I pointed the gem in my Gemfile to right before this commit and it works: https://github.com/refinery/refinerycms-blog/commit/c1f681496355041d7afe68840ce3a4cad72c22ab ```ruby gem 'refinerycms-blog', git: 'https://github.com/refinery/refinerycms-blog', ref: '0b3bb05' ``` Just started using refinery,...

No worries @parndt, appreciate everything you guys do and thanks for the response!

Yep that would work as well! I'm not sure I'll have time to put together a PR for a little while as my solution above has solved my immediate need...

Glad to hear this is on your radar! 😄 I found [this folder](https://github.com/storybookjs/storybook/tree/next/lib/ui/src/components/sidebar) in the web repo, is it the best place to find the web's implementation of the navigator?...

I was able to get [esbuild-node-loader](https://github.com/antfu/esbuild-node-loader) working really well with the only issue I ran into was the missing comma which is now fixed (https://github.com/plopjs/node-plop/pull/215). Here's an example repo I...