Chris Ewald

Results 41 comments of Chris Ewald

@goosetav - I was able to fix this by adding 'require: false' to the 'guard-rspec' gem in Gemfile as it is described in the guard-rspec readme. This issue is raised...

I ended up hacking this in to my project. Here is how I did it: In gruntfile.coffee: ``` coffee module.exports = (grunt) -> target = grunt.option('target') || 'development' appConfig =...

And those mobileRoot and urlRoot properties are fed into an index.html handlebars template that is copied into phonegap before phonegap build is run Doing it like this allows me to...

Also forgot to mention, for this to work on iOS, the config.xml needs to be handled as well: In config.xml.hbs: ``` xml {{ appName }} ``` So the build process...

This happens to me as well when programmatically calling `require("neogit").open({ kind = "replace" })` Starting happening for me after upgrading to nvim 10, where I also updated neogit. ``` ...

Ok! And I now fixed this by unpinning version 1.0 from my lazy config for neogit. Add `version = false` to the definition and update.

I would also really like to see edge support in this library. I am currently using the web API directly to workaround this. @mike-engel - fetch is natively supported in...

And we are now past the EOL for Node 16, so no polyfill needed if you minimally support Node 18 and higher: https://nodejs.dev/en/about/releases/

I'm about to setup next 14 + clerk + trpc and came across this issue. From what I can tell, there is a working example here for how to setup...

Hi All, I got this working smoothly in my application. I created a gist with the basics of how to do it: https://gist.github.com/mkcode/a590d1c8f7b0a37b8299965de7f7e958