Closed danrot closed 4 years ago
same here. Started happening without any changes
Experiencing the same issue.
Same issue here
also there is weird Semantic version behavior I am observing. Although react-dropzone
has ^0.1.12
mentioned this as dependency, it is only trying to resolve to 0.1.16
not 0.2.2
.
@thecodejack. versions starting with 0
works differently while using ^
as it only updates the patch versions and not the minor (that will happen with other versions starting with something different to 0
).
Example:
^0.1.12
will update to the latest PATCH version 0.1.x
.
^1.1.12
will update to the latest MINOR version 1.x.x
.
Visual example:
@midudev wow...I didn't realize that... thanks for letting me know...
Please update to v0.2.2
.
@rolandjitsu is not that easy and I would advice to reconsider publishing a PATCH version over the minor version with the fix by cherry picking the commit.
Why? Because other dependencies, like react-dropzone
, are using ^0.1.x
.
https://github.com/react-dropzone/react-dropzone/blob/master/package.json#L94
This is making that react-dropzone
is not working anymore for any of their users.
While they could upgrade to 0.2.2
this will make that:
If you just update the latest 0.1.x
version with a PATCH, the fix will just be automatically used in the next npm install
.
@midudev true. I'll make a patch for 0.1.
Thank you so much @rolandjitsu 🙇♂️ and much appreciated for your work. 👏
Thank you so much @rolandjitsu 🙇♂️ and much appreciated for your work. 👏
No worries, sorry for the mess. Please try again with v0.1.x and let me know if it works.
I can confirm it's working.
I reinstalled react-dropzone@10.2.1
and now everything is working from my end. 👍
Can also confirm that it is working, thank you for fixing it so fast!
Do you want to request a feature or report a bug?
What is the current behavior?
My webpack build is failing with the following error message when using the latest 0.1 version of
file-selector
(0.1.16):After downgrading to
file-selector
0.1.13 the build is working again.If the current behavior is a bug, please provide the steps to reproduce.
What is the expected behavior?
The build should still be working.