Andy Bayer

Results 22 comments of Andy Bayer

Seems like a tricky problem, since the error really _is_ in the other file. Maybe if file switching for runtime errors waits for you to stop typing of Auto-refresh is...

I just updated the tests for font size to use `dispatch` through the `reduxRender` function. `Preferences` isn't itself `connect`ed so I just patched `setFontSize` through, and the integration doesn't quite...

I’d be happy to take a look at this!

Opinions on the shape of font size? ```js { fontSize: { editor: number, console: number } } ``` or ```js { editorFontSize: number, consoleFontSize: number } ``` ? The former...

I'm happy to make a pull request updating the related types, but it seems like there's a fair bit of indirection and type aliases involved and I don't want to...

So the resolution of this would be the home brew formula using make dist rather than make?

without running `autogen.sh` first there's no Makefile, and `autogen.sh` depends on ChangeLog. after manually making ChangeLog (`git log > ChangeLog`), here's the output of make --debug [out.txt](https://github.com/espeak-ng/espeak-ng/files/6911691/out.txt)

I’m afk currently, but I believe you can replicate it by installing espeak-ng via homebrew, as that formula runs “make” brew install anarchivist/espeak-ng/espeak-ng On Sat, Jul 31, 2021 at 2:47...

``` > autogen.sh glibtoolize: putting auxiliary files in '.'. glibtoolize: copying file './ltmain.sh' glibtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'. glibtoolize: copying file 'm4/libtool.m4' glibtoolize: copying file 'm4/ltoptions.m4' glibtoolize: copying file...

i can reproduce this when the command i run doesn't produce stdout. for example: ```js pty.spawn('sh', ['-c', 'sleep 1']) // or pty.spawn('sh', ['-c', 'echo hi && sleep 1']) ``` this...