Closed chrisnicola closed 7 years ago
Becuase Pug did not follow node-semver for their beta versions, NPM thinks that beta10 < beta5. What they should have done is called it beta.X. Changing the requirement to ^2.0.0-beta1 fixes an unmet peerDependency error when upgrading Pug.
beta10 < beta5
beta.X
^2.0.0-beta1
Thanks! :)
Becuase Pug did not follow node-semver for their beta versions, NPM thinks that
beta10 < beta5
. What they should have done is called itbeta.X
. Changing the requirement to^2.0.0-beta1
fixes an unmet peerDependency error when upgrading Pug.