Sviatoslav

Results 48 comments of Sviatoslav

@brenwell try to use `root: 'dist'` option

I've successfully integrated mdx (react) with mark. There are still some little things to fix but it seems to work! I'm planning to publish my work as a separate package...

There is an inaccuracy in the docs. `ChartContainer` accepts children as a function: https://github.com/reaviz/reaviz/blob/master/src/AreaChart/AreaChart.tsx#L302-L312

Looks like an example from docs is incomplete/incorrect. Even if you'll properly use `ChartContainer` you will be required to manually setup all the dependencies for `AreaSeries` and `BarSeries` and this...

In order to fix an error with proxying functions, you can try to re-define proxy handler: ```js const { MessageChannel } = require('worker_threads'); const Comlink = require('comlink'); const nodeEndpoint =...

Configurable it's good! But is should be enabled by default to keep backward compatibility. >

Hello, @ngmiduc If you'll provide some `*_DEBUG` env variable for you react app during build, this will hardcode that value in your code and it won't be possible to change...

According to the source code `plaintext` was implemented to add support for logging to files, but for some reason this option disable only part of colors leaving the another part...

### scripts simply add in `scripts` section in your `package.json` ```json "lint": "eslint src" ``` if you are using typescript, then: ```json "lint": "eslint --ext js,ts,tsx src" ``` ### run...

There is a pull request already. @thornjad what should be done to merge it?