Adam Močkoř
Adam Močkoř
Hello, I use `express-bunyan-logger` as child logger of bunyan. My config is: ``` var logExpressConfig = { type: 'app-express' }; var logExpressExcludes = [ 'user-agent', 'body', 'short-body', 'req-headers', 'res-headers', 'req',...
This is copy paste of https://github.com/algolia/react-element-to-jsx-string/pull/317 since it doesn't get merged due commitlint errors. I fixed that. Thanks @DavidBabel for implementing this. I can provide support to this PR if...
This should add possibility to import this library in SSR environments.
I tried to add `next export` to `package.json` like so `"build": "yarn next build && yarn next export"`, but non of the pages (other then 404) is generated. Why so?...
Allow more sane styling of arrow instead of hardcoded values. E.g. arrow size, border width.
[There is](https://github.com/strothj/react-docgen-typescript-loader/blob/affef97564eaa3044b63e1704affd43eb5b4bb15/src/__snapshots__/generateDocgenCodeBlock.spec.ts.snap#L72) `\\"defaultValue\\": { value: 123 }` without without double quotes around value key in your test snapshots. Do you know why and is there a way to add `"`...
If I change in your example this: ``` { this.state.modalOpen && Hey I am a modal! } ``` to this: ``` { this.state.modalOpen ? ( Hey I am a modal!...
If I have custom function to retrieve color (for example from current theme), I am getting error, but I shouldn't because I am using variable as parameter to that function.