Kevin Jones

Results 16 comments of Kevin Jones

@julienschmidt, what are your thoughts on this? I think I'll be using @iahmedov's branch too, for custom routing scenarios. It'd be cool if this got into master.

This seems to be related to usage of babel-plugin-module-resolver in my case. Were you using that too? I haven't figured out a workaround yet. Removing usage of that plugin isn't...

@Sachanski In my project I'm just using the plugin to set the root; I'm not using aliases or ".." in these imports. Usage is similar to @lorenzoangelini's https://github.com/react-native-community/upgrade-support/issues/87#issuecomment-657451645

Likely implied from the title, but I believe this is only occurring for me on iOS builds. Android builds seem to complete successfully.

I was getting that error, and this fixed it for me: https://github.com/react-native-community/upgrade-support/issues/30#issuecomment-608495255 > I added a File.swift in my projects, and it was ok. But if I removed the file...

I think this is the same issue as https://github.com/crazycodeboy/react-native-splash-screen/issues/397 The fix there resolved this issue for me -- replacing: `[RNSplashScreen show]` with `[RNSplashScreen showSplash:@"LaunchScreen" inRootView:rootView];` The readme seems to mention...

Having the same issue here. It sometimes takes up all available memory (e.g. 30GB), resulting in OS freezing. Just a guess, but this feels more like a bug than an...

I was running into this issue today. At first I thought it was https://github.com/gohugoio/hugo/issues/7955, as both result in zero-length output. "ignoreCache" and disabling cache via maxAge sound like _safe_ things...

I believe vscode-jest auto-inserts the "jest.disabledWorkspaceFolders" settings into the wrong place when you click on the UI to insert it. I had to put it in my workspace settings and...

Not sure how precise this is, but for my purposes I created a baseline rate counter like this: const baselineTickerResolution = 100 ticker := time.NewTicker(time.Second / baselineTickerResolution) for range ticker.C...