-
-
Notifications
You must be signed in to change notification settings - Fork 43
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
fix failing test #44
fix failing test #44
Conversation
Hi @tjenkinson!, thanks for the Pull Request The first commit message isn't properly formatted. We ask that you update the message to match this format, as we use it to generate changelogs and automate releases.
Read more about contributing to ESLint here |
6e0fe72
to
4dd146d
Compare
There’s no package-lock so probably the yaml package changed. Maybe add a package lock? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
weird! I didn't see a new |
🎉
Ah ok. I get that the lockfile isn't used for
🤷 |
I think this is the cause: kettanaito/fs-teardown@dfc1600 Published 21 days ago https://www.npmjs.com/package/fs-teardown |
Ah nice find that looks like it would remove the indentation from the first line only. I wonder why they added that 🤔 |
The |
Thanks for the quick update! It seems that The latest Node 10.x seems to work, but our CI is failing on Node 10.12.0: TypeError: Cannot read property 'writeFile' of undefined
at /home/runner/work/eslintrc/eslintrc/node_modules/fs-teardown/lib/index.js:2854:73
at step (node_modules/fs-teardown/lib/index.js:90:23)
at Object.next (node_modules/fs-teardown/lib/index.js:71:53)
at fulfilled (node_modules/fs-teardown/lib/index.js:61:58) (off-topic, since the error is on line 2854, it might be that We are in the process of preparing a major release that will drop Node 10, so we could pin |
Hey, @mdjermanovic. Thank you for pointing out that breaking change in If not, I can try to ensure that the new release of |
Hi @kettanaito! Yes, we dropped Node.js 10. The versions we support now are: Lines 77 to 79 in be0f70d
We have switched to |
@mdjermanovic, fantastic! There's a reworked API in the next version of |
@kettanaito sorry, I missed this. Would you like to open an issue with the description of the new API, so we could discuss the changes? |
Not sure how this passed on master? Dependency version change maybe?
Anyway this fixes it locally.
fixes #43