Germán Méndez Bravo
Germán Méndez Bravo
Well, the thing is if no color is found, `get-color()` shows me an error and dies. For example, I was requesting `get-color("image.jpeg", Muted)` and I got the error in the...
Did you figure anything about `TypeError: hoist_non_react_statics_1.default is not a function` ? I tried removing `allowSyntheticDefaultImports` and setting it to `false`, but that didn't fix it...
The real problem came from here: https://github.com/sergeybekrin/react-with-async-fonts/blob/8314de50d9726dd8f5726f48c98d5438e2045922/src/with-fonts.tsx#L3 Because hoist-non-react-statics didn't export a `default` symbol, in older versions it should have been: ```typescript import * as hoistStatics from 'hoist-non-react-statics'; ``` In...
`document` and `head` variables declaration only need to be moved to the `create()` function (so improt/require works in server side)
Sublime Text 2 uses Python 2 and `ConnectionRefusedError` is not defined there; instead the same condition causes an OSError with the `errno` attribute equal to `errno.ECONNREFUSED`. https://github.com/pjdietz/rester-sublime-http-client/blob/7135e8cb9654d2629aa57d02f198a5ee53ae8eb7/rester/http.py#L191 Should be something...
This is interesting... instead of modifying the original, one can modify one file in `Packages/User/`? I'll try that to see how it works. Do files in `User` Directory need to...
Underline can be done. Hopefully that’ll be added to next version. About variables, that’s not so easy. Specially to make it work through files. That’d need a parser and it’d...
I haven’t tried this too much, but I think you need to give it the name as well (during init). Create a new directory and inside it do: ```sh mech...
This is weird, it seems the error comes from reading the index file. Could you please share your `~/.mech/data/index` When the error shows.
To support multiple Mech boxes we need to change the internal directory where the boxes are put. I believe we can simply add an extra layer inside `.mech`, instead of...