Closed overtune closed 5 months ago
@overtune Hey!
All's good, don't worry. I made a mistake when set the lower requirement for nanostores as peer dedendency. It's gonna be fixed shortly in #43.
TIL npm doesn't allow installing a dep at all in this case. That's crazy, yarn and pnpm show an error but proceed with the install.
as a workaround, you can write in the package.json
of project:
"overrides": {
"nanostores": "$nanostores"
}
and then install @nanostores/query
Hi!
I just updated
nanostores
and@nanostores/query
in a project, but got npm errors. So I tested to install these two packages in a new and empty project and got the same errors...First I installed
nanostores
:That works, but when I install
@nanostores/query
I get an ERESOLVE error:I use node v20.11.1 (npm v10.2.4). If I try installing an older version of
@nanostores/query
(npm i @nanostores/query@0.2.10
) everything works fine.Is this some problem with
@nanostores/query
or is it my machine?