-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
fix(file-list): do not define fs.statAsync #3467
Conversation
Defining fs.statAsync affects other modules such as bluebird which throws an error because of the 'Async'-suffix: > Cannot promisify an API that has normal methods with 'Async'-suffix > See http://goo.gl/MqrFmX Fixes: karma-runner#3466
✅ Build karma 2575 completed (commit 3419c2ebd1 by @matz3) |
✅ Build karma 176 completed (commit 3419c2ebd1 by @matz3) |
✅ Build karma 177 completed (commit 3419c2ebd1 by @matz3) |
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.
Thanks for fixing this!
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.
yes better, thanks
retry |
✅ Build karma 182 completed (commit 26e7b27a80 by @matz3) |
✅ Build karma 181 completed (commit 26e7b27a80 by @matz3) |
✅ Build karma 2580 completed (commit 26e7b27a80 by @matz3) |
Ok so now the travis integration point is broken. I will force this PR, and see if we get a release. |
## [5.0.1](v5.0.0...v5.0.1) (2020-04-10) ### Bug Fixes * **file-list:** do not define fs.statAsync ([#3467](#3467)) ([55a59e7](55a59e7))
🎉 This PR is included in version 5.0.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Defining fs.statAsync affects other modules such as bluebird which throws an error because of the 'Async'-suffix: > Cannot promisify an API that has normal methods with 'Async'-suffix > See http://goo.gl/MqrFmX Fixes: karma-runner#3466
## [5.0.1](karma-runner/karma@v5.0.0...v5.0.1) (2020-04-10) ### Bug Fixes * **file-list:** do not define fs.statAsync ([karma-runner#3467](karma-runner#3467)) ([55a59e7](karma-runner@55a59e7))
Defining fs.statAsync affects other modules such as bluebird which
throws an error because of the 'Async'-suffix:
Fixes: #3466