Eldad Bercovici

Results 28 comments of Eldad Bercovici

Run the following: ``` which node ``` Then add the following line to the top of `my_host.js`: ``` #!/Users/eldad/.nvm/versions/node/v10.15.1/bin/node ``` (replacing the path with the output of `which`)

+1 Love this extension, btw

@daton89 Try playing with the `devtool` property, set it `eval` to see if you see any significant change, if so read Webpack's docs and try the other, less cheap, options

Hey @peacechen, can you please post a detailed example of what you did and how you made it work? I'm trying real hard to implement a native module for SVG...

Thanks, that helped a lot! Now I'm stuck at a point where I have a component that has one native module inside another one (a Path within an Svg): ```js...

This doesn't work for me, I have a component set up like this: ```js @track((props) => ({ some_prop: props.something ? 'value-1' : 'value-2', })) export class MyComponent extends Component {...

See https://github.com/mac-s-g/react-json-view/pull/383

Seems like the JSON has the following 2 lines at the start: ``` Webpack Bundle Analyzer is started at http://127.0.0.1:8888 Use Ctrl+C to close it ``` Deleting these helped.

@ffxsam, this is awesome! By using your fork, I have been able to add the ability to create segments on the fly. Thank you.

@ffxsam, do you mind sharing what made you ditch scroll-to-zoom? I checked out your PR, reverted the last commit, and it seemed to work fine.