You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For projects which are already using gradle to manage node.js and install deps with package.json, it would be nice if our prettier config could hook into that. Maybe if it had an arg where you passed the node executable, and another for passing package-lock.json for caching, and it was on you (somehow) to make sure that the dependencies were wired correctly. Getting the ergonomics right is key, and also difficult...
The text was updated successfully, but these errors were encountered:
I just stumbled upon this when looking for a way to deal with
> npm ERR! code ETARGET
> npm ERR! notarget No matching version found for [email protected].
> npm ERR! notarget In most cases you or one of your dependencies are requesting
> npm ERR! notarget a package version that doesn't exist.
when trying to run spotless.
Which I don't understand, especially since that exact version is already installed:
$ prettier --version
2.8.4
I see that this issue has been referenced a couple of times but I gather there aren't any plans to implement it?
For projects which are already using gradle to manage node.js and install deps with package.json, it would be nice if our prettier config could hook into that. Maybe if it had an arg where you passed the
node
executable, and another for passingpackage-lock.json
for caching, and it was on you (somehow) to make sure that the dependencies were wired correctly. Getting the ergonomics right is key, and also difficult...The text was updated successfully, but these errors were encountered: