Nick Allred
Nick Allred
@NeilFraser If this isn't a feature that you're interested in merging into JS-Interpreter, do you think this is something that users of JS-Interpreter could implement on their end? It feels...
@dinukadesilva Would it be possible to bring this pr up to date and try to get it merged again?
Sorry, I’m not asking for it to be made sync. It would just be nice if it returned a promise that resolved when it was done. That way I would...
The following is a little example of how you could return a promise ```JS if (arg instanceof HTMLVideoElement && arg.render) { return new Promise((resolve, reject) => { ...[Removing code for...
@Janneman84 Adding these dlls to the "win-unpacked" directory (where the .exe is) worked for me if I just distribute that directory, but did you ever find any way to get...
Now I see that `REACT_APP_` environment variables are available at runtime, whereas `NODE_ENV` is not. So this makes sense that using `REACT_APP_` environment variables wouldn't enable tree shaking. I guess...
Here it is.... If you want to do this: ``` import {myFunction} from './myModule' if(process.env.REACT_APP_ENABLE_MY_FUNCTION === 'true') { myFunction() } ``` You **must** be sure to define `REACT_APP_ENABLE_MY_FUNCTION`. If you...
> I also faced this issue. Thanks for your investigation on this. I helped a lot! Would be great to have this documented. > Do you think you can contribute...
@joaoantunesTD I'm on 3.4.1 for `react-scripts`, I doubt that matters much but maybe give it a try on that version and see if you have the same issue? It is...
@zankich What is the purpose of the third parameter in your roll command? I see that it represents state, but I can't seem to find any documentation that indicates what...