Francesco Cioria
Francesco Cioria
apparently `hellojs` is using the LinkedIn's [OAuth2 Legacy](https://developer.linkedin.com/docs/oauth2-legacy) process which required a server-side step (that's why in the linkedin demo they pass a `ouath_proxy` param: https://github.com/MrSwitch/hello.js/blob/master/demos/linkedin.html#L30)
@giogonzo `React.Children.toArray` does exactly what we tried to replicate (with maany bugs)... and it's also typed! No one reported a bug for the current implementation, but this greatly simplifies the...
or we use `bowser`: ```js detectBrowser() { return window && bowser._detect(window.navigator.userAgent); } getStyle() { const isIE = this.detectBrowser() === 'msie'; const style = pick(this.props, [ 'width', 'height', 'marginLeft', 'marginTop', 'marginRight', ...
this is a better implementation if you want to have real typings instead of `any` create a `react-native-video-controls.d.ts` file as: ```ts declare module 'react-native-video-controls' { import * as React from...
Hi, we're having the same issue. We use `VirtualModule` to generate a `config` file from three other files. We can easily trigger a build whenever one of the three sub-config...
Hi @guyluz11 Honestly I stopped using this a bit more than a year ago but at that time it was still working I was looking now at my own code...
Hi @m-salamon have you tried `type="text"`? I think that's what you're looking for
Or, we could improve the logic for "breaking-detection" and "changelog" as follows: - analyze tags to get highest `npm-version` tag (ex: `v3.x.y`) - if current version is one or more...
> (but even here, what if someone like hophop or nemobot is in charge of updating the merge commit message with "breaking" if needed? 🤔) Actually for buildo's workflow we...
👍 I like this, I think like this it will be more intuitive for the user. > If the user passed a parameter to override this behaviour, ask confirmation to...