Paul Gschwendtner

Results 173 comments of Paul Gschwendtner

You can turn off the workers for type bundling by using `--strategy=BundlingTypes=remote,sandboxed,local`. Once you set that up and perform a build locally, you potentially will see some warnings/console output in...

@mhaertwig I want to clarify that the disabling of worker mode is recommended only for debugging, to figure out what leaks to the `stdout` and breaks the IPC. Long-term I...

@mhaertwig Do you have a commit or something you could share? Technically nothing should pollute stdout from API extractor since we provided a custom logging utility, but if something leaks...

@mhaertwig Awesome, thanks! Let me know if I can help

@mhaertwig Okay, I have new information. If there is no log output polluting `stdout`, then a similar scenario can be reproduced if e.g. the worker script/or Microsoft API extractor would...

Worker debug mode can be enabled with `sed -i "s#DEBUG = false#DEBUG = true#" node_modules/@bazel/worker/src/worker.js` (when added as a postinstall for example). unfortunately though there still wouldn't be any log...

I think the best you can do is add something like the following to the `process.stderr.write` patch in `worker.js` ```js require('fs').writeFileSync('/tmp/worker-log.txt', output, 'utf8'); ``` And if you can then reproduce...

Thanks for confirming. Interestingly this code seems to break before the actual type bundle worker logic runs. It seems to fail when parsing the `WorkRequest` delivered through `stdin`. Either: *...

Blocked on the karma-jasmine update and zone.js fix I sent separately..

The karma jasmine fix landed, rebasing..