Nathan Walker

Results 332 comments of Nathan Walker

Thanks for reminder here - we do want to explore some smart ways to tie into dep-graph.

@fealebenpae In `ios-charts`, is it simply the fact that they made the swift classes `public` which exposes them to Objective-C? I'm trying to update this Pod https://github.com/cemolcay/MaterialCardView to be consumed...

@fealebenpae Or does it have something to do with this: https://github.com/danielgindi/ios-charts/blob/master/Charts.podspec#L13-L21 ... If so, I'm not 100% sure how to modify, but maybe has something to do with this: https://github.com/cemolcay/MaterialCardView/blob/master/MaterialCardView.podspec#L125-L127

@fealebenpae I will say the documentation around this stuff from Apple is not 100% accurate. https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html#//apple_ref/doc/uid/TP40014216-CH10-ID122 Appears to suggest a number of things that seem to be incorrect. Simply using...

> Private declarations are not exposed to Objective-C unless they are explicitly marked with @IBAction, @IBOutlet, or @objc as well. Ok, so simply adding `@objc` would seem to make them...

@sitefinitysteve if you update to latest version of Auth0 swift cocoapod, modify your Podfile to following: ``` pod "Lock", "~> 2.2" pod "Auth0", "~> 1.5" post_install do |installer| installer.pods_project.targets.each do...

@miguelarcan turn hmr off - we are looking to replace hmr with sockets so run your app like this: ``` nsc debug android --no-hmr ```

@miguelarcan HMR never worked reliably for Angular projects particularly and we are going to replace it as part of {N} 7.0 release at end of August. There have always been...

@vance good feature request 👍 It would be consistent to allow this. I've been considering turning off base class generation by default (right now it's `on` by default) however it's...

Hi @MarcoNPZ looks like you may be using old versions. Make sure you're using `node` `v12.13.0` or higher and `npm` `6.9.0` or higher. Then install the following globally: ``` npm...