Jovica Aleksic

Results 159 comments of Jovica Aleksic

~~If I understand correctly, this is about the version defined in the package.json of the electron package itself, right? If that is the case, I would go for something like...

Hi. If you look around here, you'll find a bunch of issues regarding `__static` assets. The most popular problem there is a bit similar and also requires a different handling...

Hi. I don't think copying to the static folder is the right way. The static folder is meant to bring well-known files from compile time to run time, so it...

Important: The error only happens using `[email protected]` - it does not happen using `@1.0.2` or `@1.01`

So what's the status here? Do we know whether it's an issue with `esdoc-type-inference-plugin` or with `esdoc-ecmascript-proposal-plugin`? I put a console.log just before https://github.com/esdoc/esdoc-plugins/blob/master/esdoc-type-inference-plugin/src/Plugin.js#L157, and from what I see.. Usually,...

Well I disabled the `esdoc-type-inference-plugin` for now, and it "helps" - not sure what it would normally do tho, its functionality must be missing now. ``` { "name": "esdoc-type-inference-plugin", "option":...

See reproducible example https://codesandbox.io/s/react-multiple-select-issue-jcq1e Open console, change options and observe log output.

A way to work around the problem, based on [this recipe](https://github.com/benbowes/react-responsive-select/blob/f6886e01dfff0b343d470213b7e5d7d401abd5f5/src/docs/recipes/onListen.md), is to only handle the `isOpen` change on actions that explicitly change the panel open state, instead of on...

Hm. I'm not quite sure, doing that without a major version bump would cause the same kind of warning for all legacy projects that use `dis-gui` - in my case...

well, the problem was `{this.state.options.map(function(opt,index) {` - as soon as you use a classic `function() {}` in JSX, the scope is lost. For iterations in JSX we should always use...