-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transform leaves process running causing CI to fail #50
Comments
In theory, this is handled by the fact that the server is launched & I run this via gulp in CI and it does run fine. Is there any chance you'd have the time to debug this a little (or even put up a repo w/ the example so it easier to just |
I'm curious, what is the reason for unrefing the server process? It appears every time I run babel I end up with an orphan server process. |
@GreenGremlin from the docs:
|
Ran into the same issue: code in postcss-server.js handles 'SIGTERM' by removing the socket file but not exiting. PR to come. |
Also, I'm not really doing much coding any more, so if one of you wants to take over maintaining this, let me know. |
ok thanks for the heads up @wbyoung ❤️ hope all is well |
When the build process (babel) quits and the transform was used it leaves a child process running which causes CI build to hang and eventually fail.
Code to reproduce:
postcss.config.js:
CSS file:
The transpiled code is correct the only problem is orphaned child process.
After looking for details I found in MacOS's Activity Monitor that this process is using
/tmp/bptp-<projectname>.sock
file.The text was updated successfully, but these errors were encountered: