anodynos/upath

Incompatible with Node.js v10

Closed this issue ยท 20 comments

When installing upath under the newly released Node.js v10, the following error is displayed:

error upath@1.0.4: The engine "node" is incompatible with this module. Expected version ">=4 <=9".
error Found incompatible module

This is an indirect dependency of webpack (webpack -> watchpack -> chokidar -> upath), so the current engines flag prevents any webpack user from upgrading to node 10.

A workaround is to use the flag --ignore-engines like:
yarn install --ignore-engines

thanks @mathmarques yarn --ignore-engines works !!!

same here

+1

@mathmarques typo, should be install instead of intall ๐Ÿ‘

Pinging @anodynos about this issue.

Please solve this ASAP, it blocked a lot of users.

FYI this is fixed in #15.

Also please never ever purposefully break forward compatibility by enforcing something like node <= X.

You can temporarily work around this issue by setting ignore-engines to true golablly with yarn config set ignore-engines true -g
As this is obviously not an ideal solution remember to unset this after #15 is merged (yarn config delete ignore-engines -g)

same issue, damn it

+1

+1

If you have this issue, please upvote the description and subscribe, commenting notifies everyone in the thread unnecessarily.

Currently blocked on this. Any idea when a new package will be pushed.

+10000000000

cc'ing @realityking who has recent commits...

While I do have a couple commits in, I don't have push access to this repo. Gotta wait for Angelos to merge #15.

Hi everyone, sorry for the wait! I'll merge PR #15 which should fix all :-)

wilk commented

Maybe this can help: yarnpkg/yarn#5727 (comment)