-
Notifications
You must be signed in to change notification settings - Fork 114
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
UnhandledPromiseRejectionWarning: entry.isFile is not a function #144
Comments
My repro from #145:
Edit: hardcoding |
This also happens to me, I updated OS.js to the latest version and now BlueLight |
Similarly:
|
Related to the latest release. Fix it ASAP. |
Seeing the same issue on: |
This is an example of how 1 little bug can cause an uproar. |
Sorry, this applies to the latest release 😭 I revert
|
@mrmlnc how soon do you think we will be able to see this fixed. Is it possible to remove version 2.2.5 from npm? |
My deployments started failing and I was pulling my hair out. Thank you so much for being on top of this. Cheers. |
I publish a new version ( |
PreludeThank you for using my package. I really appreciate it 🎉 ❤️ I'm sorry about what happened today. This is the first release when I did not conduct integration tests, because the changes seemed insignificant to me (main changes related to the Stream API with a small number of users). Unfortunately, I forgot about the commit where I changed the code style. What happened?In the commit I replaced Base code class Some {
isFile() {
return 'here';
}
}
const some = new Some();
some.isFile();
// -> 'here' Before Object.assign(some, {
additionalProperty: 'value'
});
some.isFile();
// -> 'here' After const newSome = { ...some };
newSome.isFile();
// TypeError: newSome.isFile is not a function What's next?
|
@mrmlnc thank you for this quick response. |
Fast-glob is officially the new left-pad now 😉 |
Environment
Error
The text was updated successfully, but these errors were encountered: