Summer Knight

Results 61 issues of Summer Knight

As per https://reasonml.github.io/blog/2018/03/06/reason-3.1.0.html, Reason 3.1.0 support comes with bs-platform 2.2.2 and it would be nice to use that new syntax with the `bsb-native` fork.

As-is, this plugin does not appear to detect usages of `styled` when imported from `styled-components/native` instead of `styled-components`. I'm specifically interested in the `displayName` support to make debugging easier.

enhancement
help wanted

If the `displayName` for a component turns out to be a `symbol` for some reason, ECMAScript will fail early when trying to implicitly convert it to a string. This explicitly...

The following is possible in lua, but causes a parse error in MoonScript. It could be handy, as I use the pattern in lua frequently. ``` a = b =...

Although it's likely that #18 probably also fixes this, I attempted to take a much lighter touch and just fix the problem at hand.

Although I can't seem to reproduce this with the `lodash` module, it affects others. I suspect that has to do with the differentiation between `pkgStore`s where `.isLodash()` is used to...

enhancement

I would like be able to configure the `barrierForward` to be different from 1/4 of the screen's width. Ideally, the `SideMenu` component would be able to take (as a prop)...

feature request

As per https://github.com/react-native-community/react-native-side-menu/blob/master/index.js#L114, The first check of `typeof props.isOpen !== 'undefined'` is always guaranteed to be `false`, as `isOpen` cannot be set to `undefined`, as that is being overridden by...

Input: ```ts import { createIs } from 'typescript-is'; export const enum MyEnum { Alpha = 'alpha', Bravo = 'bravo', Charlie = 'charlie', Delta = 'delta', Echo = 'echo', Foxtrot =...