-
Notifications
You must be signed in to change notification settings - Fork 492
Add support for fork-ts-checker-webpack-plugin #160 #161
Conversation
I have no idea how I killed the test with my change. |
That's a curious error:
Occurs on |
Weirdly running
I'm afraid I don't know how this ought to be fixed... |
@johnnyreilly you can see the better error now - think before it was just a Travis issue - but I have rerun and now you can see the actual error being an issue with your change. You should rebase against master branch to get latest changes as well. |
In the current version of the commit, the config for So the resulting plugin config might look like this.
|
Thanks folks - that's helpful. I might drop cache and thread loader given @DorianGrey comments on #160. Seems entirely reasonable |
I hope I merged successfully there - never used the GitHub tools for that before... |
hmmm ... the diff doesn't look right to me. I'll try and fix this up later (out of time for now) |
all in all my merge appears to be a terrible mess! I think I may renew the fork and start again... |
Relates to #160
Hello!
Since it seemed to be fairly easy to plug this in I thought I'd have a go. It seems to work. You may not want this PR and that's fine. But I had some free time and so here you go. ❤️
Following my changes, if I put a linting issue in the code:
console.log('bad right?')
Here's what I see in the browser:
If I put a compilation error in the code:
this_is_an_actual_error
I see this in the browser:
Oh - GitHub won't let me copy that in. Not sure why. Anyway, it says:
I wasn't sure exactly how you're supposed to test changes. I just created a react app using the existing mechanism, applied my changes over the top and then ran. There may be a "proper" way to test things. Happy to be instructed.